/**
  * Constructs HandlerNotFoundException
  *
  * @param string         $message  The exception message
  * @param int            $code     The exception code
  * @param Exception|null $previous The previous exception for chaining
  */
 public function __construct($message = '', $code = 1122, Exception $previous = null)
 {
     parent::__construct($message, $code, $previous);
 }