Backend\Core\Engine\Exception::__construct PHP Method

__construct() public method

public __construct ( string $message, integer $code )
$message string The message of the exception.
$code integer The numeric code of the exception.
    public function __construct($message, $code = 0)
    {
        parent::__construct((string) $message, (int) $code);
    }
Exception