Exception::getCode

(PHP 5 >= 5.1.0, PHP 7)
Gets the Exception code
final public mixed Exception::getCode ( void )

Returns the Exception code.

Returns:

Returns the exception code as integer in Exception but possibly as other type in Exception descendants (for example as string in PDOException).

Examples:
Exception::getCode() example
<?php
try {
    throw new Exception("Some error message", 30);
} catch(Exception $e) {
    echo "The exception code is: " . $e->getCode();
}
?>

The above example will output something similar to:

The exception code is: 30
See also:

Throwable::getCode() -

doc_php
2016-02-24 15:53:28
Comments
Leave a Comment

Please login to continue.