summaryrefslogtreecommitdiff
path: root/server/core/ErrorManagement.php
diff options
context:
space:
mode:
authorEoleDev <EoleDev@outlook.fr>2016-02-12 12:45:00 +0100
committerEoleDev <EoleDev@outlook.fr>2016-02-12 12:45:00 +0100
commit294fbb4d11b9399be231bd999447f2a214e11a1f (patch)
treecc5c257b725fcf068280cc1de5b826a7f76737ee /server/core/ErrorManagement.php
parentaf451ad44290f6cf8373b3672da1ada64f91ecfc (diff)
ErrorManagement Class Introduction
Diffstat (limited to 'server/core/ErrorManagement.php')
-rwxr-xr-xserver/core/ErrorManagement.php39
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