diff options
author | Chris Cornutt <chris.cornutt@hp.com> | 2015-01-27 11:38:43 -0600 |
---|---|---|
committer | Chris Cornutt <chris.cornutt@hp.com> | 2015-01-27 11:38:43 -0600 |
commit | a96f0335ee87b551aa2a3e15a41f652db65af962 (patch) | |
tree | 5e04ebdd51f393fd27ac8c757e5af47a325b924b /src | |
parent | 7350af84c9df70e3603d4260fcc52a9a5603776a (diff) | |
download | gatekeeper-a96f0335ee87b551aa2a3e15a41f652db65af962.zip gatekeeper-a96f0335ee87b551aa2a3e15a41f652db65af962.tar.gz gatekeeper-a96f0335ee87b551aa2a3e15a41f652db65af962.tar.bz2 |
adding exceptions for data not found and restriction fails
Diffstat (limited to 'src')
-rw-r--r-- | src/Psecio/Gatekeeper/Exception/DataNotFoundException.php | 8 | ||||
-rw-r--r-- | src/Psecio/Gatekeeper/Exception/RestrictionFailedException.php | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/src/Psecio/Gatekeeper/Exception/DataNotFoundException.php b/src/Psecio/Gatekeeper/Exception/DataNotFoundException.php new file mode 100644 index 0000000..35e8241 --- /dev/null +++ b/src/Psecio/Gatekeeper/Exception/DataNotFoundException.php @@ -0,0 +1,8 @@ +<?php + +namespace Psecio\Gatekeeper\Exception; + +class DataNotFoundException extends \Exception +{ + +}
\ No newline at end of file diff --git a/src/Psecio/Gatekeeper/Exception/RestrictionFailedException.php b/src/Psecio/Gatekeeper/Exception/RestrictionFailedException.php new file mode 100644 index 0000000..90a5528 --- /dev/null +++ b/src/Psecio/Gatekeeper/Exception/RestrictionFailedException.php @@ -0,0 +1,8 @@ +<?php + +namespace Psecio\Gatekeeper\Exception; + +class RestrictionFailedException extends \Exception +{ + +}
\ No newline at end of file |