IXR_Error::__construct( $code,  $message )

In this article

PHP5 constructor.

Source

function __construct( $code, $message )
{
    $this->code = $code;
    $this->message = htmlspecialchars($message);
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.