Storage: throw StorageException on errors

This commit is contained in:
fabrixxm 2018-11-29 08:34:00 +01:00 committed by Hypolite Petovan
parent 7df3f117ac
commit 6e85a18678
2 changed files with 19 additions and 4 deletions

View file

@ -0,0 +1,15 @@
<?php
/**
* @file src/Model/Storage/StorageException.php
* @brief Storage backend system
*/
namespace Friendica\Model\Storage;
/**
* @brief Storage Exception
*/
class StorageException extends \Exception
{
}