Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php exception message

try {
    throw new Exception("Some error message");
} catch(Exception $e) {
    echo $e->getMessage();
}
 
PREVIOUS NEXT
Tagged: #php #exception #message
ADD COMMENT
Topic
Name
9+7 =