mirror of
https://github.com/friendica/friendica
synced 2024-11-11 16:22:54 +00:00
15 lines
215 B
PHP
15 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
|
|
{
|
|
}
|