mirror of
https://github.com/friendica/friendica
synced 2024-11-13 16:22:53 +00:00
16 lines
215 B
PHP
16 lines
215 B
PHP
|
|
||
|
<?php
|
||
|
/**
|
||
|
* @file src/Model/Storage/StorageException.php
|
||
|
* @brief Storage backend system
|
||
|
*/
|
||
|
|
||
|
namespace Friendica\Model\Storage;
|
||
|
|
||
|
/**
|
||
|
* @brief Storage Exception
|
||
|
*/
|
||
|
class StorageException extends \Exception
|
||
|
{
|
||
|
}
|