diff options
author | Devian <devianleong@gmail.com> | 2021-04-22 17:03:46 +0800 |
---|---|---|
committer | Devian <devianleong@gmail.com> | 2021-04-22 17:03:46 +0800 |
commit | 745cf2431a71d0e6c5f08f8605839279b2f7496e (patch) | |
tree | 11e4c7a19ac9f9efc1bb253b29b1fa488c34238e /src/Exception |
Initiate commit
Diffstat (limited to 'src/Exception')
-rw-r--r-- | src/Exception/InvalidScormArchiveException.php | 11 | ||||
-rw-r--r-- | src/Exception/StorageNotFoundException.php | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/src/Exception/InvalidScormArchiveException.php b/src/Exception/InvalidScormArchiveException.php new file mode 100644 index 0000000..34a3a6c --- /dev/null +++ b/src/Exception/InvalidScormArchiveException.php @@ -0,0 +1,11 @@ +<?php + + +namespace Peopleaps\Scorm\Exception; + +use Exception; + +class InvalidScormArchiveException extends Exception +{ + +} diff --git a/src/Exception/StorageNotFoundException.php b/src/Exception/StorageNotFoundException.php new file mode 100644 index 0000000..e657271 --- /dev/null +++ b/src/Exception/StorageNotFoundException.php @@ -0,0 +1,11 @@ +<?php + + +namespace Peopleaps\Scorm\Exception; + +use Exception; + +class StorageNotFoundException extends Exception +{ + +} |