public function __construct($message, $severity = self::CODE_NOTICE, Exception $previous = null)
 {
     parent::__construct($message, $severity, $previous);
 }
 /**
  * @param string $message
  * @param string $severity Defaults to EngineBlock_Exception::ALERT.
  * @param Exception|null $previous
  */
 public function __construct($message, $severity = EngineBlock_Exception::CODE_ALERT, Exception $previous = null)
 {
     parent::__construct($message, $severity, $previous);
 }
 public function __construct($message, $remoteIdpMd5Hash)
 {
     parent::__construct($message, self::CODE_NOTICE);
     $this->_remoteIdpMd5Hash = $remoteIdpMd5Hash;
 }
 public function __construct($message, Exception $previous = null)
 {
     parent::__construct($message, self::CODE_ALERT, $previous);
 }