IXR_Error::__construct( $code,  $message )

PHP5 constructor.


Source

File: wp-includes/IXR/class-IXR-error.php. View all references

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


Top ↑

User Contributed Notes

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