I want to extend the exception class that returns custom message when getMessage is called.
class MY_Exceptions extends CI_Exceptions{
function __construct(){
parent::__construct();
}
function getMessage(){
$msg = parent::getMessage();
return "ERROR - ".$msg;
}
}
MY_Exceptions is placed in core folder. And the exception throwing / handling is as follows:
try{
throw new Exception('a message');
}catch (Exception $e) {
echo $e->getMessage();
}
The intention is to get "ERROR - a message". But it always returns "a message". When I try debugging, the control never goes to MY_Exception class. Is there anything that I am missing?
Create file core/MY_Exceptions.php