(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:
Please login to continue.