Automattic\WooCommerce\EmailEditor

Exception::__constructpublicWC 1.0

Method of the class: Exception{}

No Hooks.

Returns

null. Nothing (null).

Usage

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

Exception::__construct() code WC 10.6.2

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