GoLang Error::getCode

request it (304)
GoLang replacement for PHP's Error::getCode [edit | history]



Do you know a GoLang replacement for PHP's Error::getCode? Write it!

PHP Error::getCode

PHP original manual for Error::getCode [ show | php.net ]

Error::getCode

(No version information available, might only be in Git)

Error::getCodeGets the error code

Description

final public mixed Error::getCode ( void )

Returns the error code.

Parameters

This function has no parameters.

Return Values

Returns the error code as integer

Examples

Example #1 Error::getCode() example

<?php
try {
    throw new 
Error("Some error message"30);
} catch(
Error $e) {
    echo 
"The Error code is: " $e->getCode();
}
?>

The above example will output something similar to:

The Error code is: 30

See Also