Split IStorage and ISelectableStorage and make their behaviour homogenous

This commit is contained in:
Philipp Holzer 2021-08-01 13:06:19 +02:00
commit 5dcdf2322e
No known key found for this signature in database
GPG key ID: 9A28B7D4FF5667BD
9 changed files with 215 additions and 228 deletions

View file

@ -21,9 +21,11 @@
namespace Friendica\Model\Storage;
use Exception;
/**
* Storage Exception
* Storage Exception for unexpected failures
*/
class StorageException extends \Exception
class StorageException extends Exception
{
}