MailPoet\EmailEditor

Exception::__construct()publicWC 1.0

Method of the class: Exception{}

No Hooks.

Return

null. Nothing (null).

Usage

$Exception = new Exception();
$Exception->__construct( $message, $code, $previous );
$message(string)
-
Default: ''
$code(int)
-
$previous(Throwable)
-
Default: null

Exception::__construct() code WC 9.8.1

final public function __construct(string $message = '', int $code = 0, \Throwable $previous = null) {
  parent::__construct($message, $code, $previous);
}