ErrorManagement Class Introduction
This commit is contained in:
parent
af451ad442
commit
294fbb4d11
4 changed files with 100 additions and 7 deletions
39
server/core/ErrorManagement.php
Executable file
39
server/core/ErrorManagement.php
Executable file
|
@ -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){
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue