mirror of
https://github.com/friendica/friendica
synced 2025-01-05 00:02:18 +00:00
15 lines
214 B
PHP
15 lines
214 B
PHP
|
<?php
|
||
|
/**
|
||
|
* @file src/Model/Storage/StorageException.php
|
||
|
* @brief Storage backend system
|
||
|
*/
|
||
|
|
||
|
namespace Friendica\Model\Storage;
|
||
|
|
||
|
/**
|
||
|
* @brief Storage Exception
|
||
|
*/
|
||
|
class StorageException extends \Exception
|
||
|
{
|
||
|
}
|