diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-16 21:32:22 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-16 21:38:38 -0400 |
commit | 62fd225cfb17129c74ca3aaa6a75ddffe6453a3f (patch) | |
tree | f09c676d5b3477a71c0b85f9d4f1625bf9a9e192 /app/Core/ObjectStorage/ObjectStorageException.php | |
parent | 8bc141a286c23e2d3581bbfb49032cb80f4b35f3 (diff) |
Add abstract storage layer
Diffstat (limited to 'app/Core/ObjectStorage/ObjectStorageException.php')
-rw-r--r-- | app/Core/ObjectStorage/ObjectStorageException.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/Core/ObjectStorage/ObjectStorageException.php b/app/Core/ObjectStorage/ObjectStorageException.php new file mode 100644 index 00000000..e89aeb25 --- /dev/null +++ b/app/Core/ObjectStorage/ObjectStorageException.php @@ -0,0 +1,9 @@ +<?php + +namespace Core\ObjectStorage; + +use Exception; + +class ObjectStorageException extends Exception +{ +} |