39 lines
551 B
PHP
39 lines
551 B
PHP
![]() |
<?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){
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|