Added management of exception_mode
This commit is contained in:
parent
d8c2e7c2bf
commit
c0c26e6cb9
|
@ -7,9 +7,17 @@
|
||||||
|
|
||||||
class Error{
|
class Error{
|
||||||
|
|
||||||
|
private static $exception_mode = false;
|
||||||
|
|
||||||
private $error = null;
|
private $error = null;
|
||||||
private $args = [];
|
private $args = [];
|
||||||
|
|
||||||
|
// set exception mode
|
||||||
|
public static function setExceptionMode($exception=false){
|
||||||
|
self::$exception_mode = $exception;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ERROR CONSTRUCTOR
|
/* ERROR CONSTRUCTOR
|
||||||
*
|
*
|
||||||
* @error<const> Const error
|
* @error<const> Const error
|
||||||
|
@ -38,7 +46,7 @@
|
||||||
* @arg2<String> [OPT] Argument 2
|
* @arg2<String> [OPT] Argument 2
|
||||||
* @arg...<String> [OPT] Argument ...
|
* @arg...<String> [OPT] Argument ...
|
||||||
*
|
*
|
||||||
* @return instance<Error> Error instance
|
* @return FALSE
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function set($const){
|
public function set($const){
|
||||||
|
@ -49,6 +57,15 @@
|
||||||
|
|
||||||
/* (2) On récupère les arguments */
|
/* (2) On récupère les arguments */
|
||||||
$this->args = array_slice(func_get_args(), 1);
|
$this->args = array_slice(func_get_args(), 1);
|
||||||
|
|
||||||
|
|
||||||
|
/* [2] Si mode exception -> lève une exception
|
||||||
|
=========================================================*/
|
||||||
|
if( $this->error !== Err::Success && self::$exception_mode )
|
||||||
|
throw new \Exception($this->explicit(), $this->error);
|
||||||
|
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue