ApplicationException::__construct PHP Method

__construct() public method

public __construct ( $message = null )
        public function __construct($message = null)
        {
            $this->message = $message;
        }

Same methods

ApplicationException::__construct ( $message = null, $ApplicationExceptionType = null )

Usage Example

 public function __construct($errors = null, $message = null, $ApplicationExceptionType = null)
 {
     parent::__construct();
     $this->errors = $errors;
     $this->message = $message;
     $this->ApplicationExceptionType = $ApplicationExceptionType;
 }
All Usage Examples Of ApplicationException::__construct