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
|
|
{
|
|
}
|