diff options
| author | EoleDev <EoleDev@outlook.fr> | 2016-02-12 12:45:00 +0100 |
|---|---|---|
| committer | EoleDev <EoleDev@outlook.fr> | 2016-02-12 12:45:00 +0100 |
| commit | 294fbb4d11b9399be231bd999447f2a214e11a1f (patch) | |
| tree | cc5c257b725fcf068280cc1de5b826a7f76737ee /server/core/ErrorManagement.php | |
| parent | af451ad44290f6cf8373b3672da1ada64f91ecfc (diff) | |
ErrorManagement Class Introduction
Diffstat (limited to 'server/core/ErrorManagement.php')
| -rwxr-xr-x | server/core/ErrorManagement.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/server/core/ErrorManagement.php b/server/core/ErrorManagement.php new file mode 100755 index 0000000..ebd5abe --- /dev/null +++ b/server/core/ErrorManagement.php @@ -0,0 +1,39 @@ +<?php
+
+use OpenStack\Common\Error\BadResponseError;
+use OpenStack\Common\Error\BaseError;
+use OpenStack\Common\Error\NotImplementedError;
+use OpenStack\Common\Error\UserInputError;
+
+
+Class errorManagement{
+
+ protected $app;
+
+
+ public function __construct($args){
+
+ $this->app = $args;
+
+ }
+
+ public function BaseErrorHandler($error){
+
+ }
+
+ public function BadResponseHandler($error){
+
+ }
+
+ public function NotImplementedHandler($error){
+
+ }
+
+ public function UserInputHandler($error){
+
+ }
+
+
+}
+
+?>
\ No newline at end of file |
