Exception :: getMessage в php
<?php
try {
throw new Exception("Some error message");
} catch(Exception $e) {
echo $e->getMessage();
}
?>
The above example will output something similar to:
Some error message
Nilesh