Common\Exception\ExitException::__construct PHP Method

__construct() public method

public __construct ( string $message, string $html = null, integer $statusCode = Response::HTTP_OK )
$message string
$html string
$statusCode integer
    public function __construct($message, $html = null, $statusCode = Response::HTTP_OK)
    {
        parent::__construct($message, new Response($html, $statusCode));
    }
ExitException