mirror of
https://github.com/friendica/friendica
synced 2025-01-05 00:42:24 +00:00
14 lines
214 B
PHP
14 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
|
|
{
|
|
}
|