ErrorException::getSeverity
(PHP 5 >= 5.1.0)
ErrorException::getSeverity — Gets the exception severity
Descrierea
final public int ErrorException::getSeverity
( void
)
Returns the severity of the exception.
Parametri
Această funcţie nu are parametri.
Valorile întroarse
Returns the severity level of the exception.
Exemple
Example #1 ErrorException::getSeverity() example
<?php
try {
throw new ErrorException("Exception message", 0, 75);
} catch(ErrorException $e) {
echo "This exception severity is: " . $e->getSeverity();
}
?>
Exemplul de mai sus va afişa ceva similar cu:
This exception severity is: 75
ErrorException::getSeverity
There are no user contributed notes for this page.
