Custom exceptions in CodeIgniter

7.1k Views Asked by At

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?

1

There are 1 best solutions below

4
On

Create file core/MY_Exceptions.php

<?php
if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class MY_Exceptions extends Exception {

    public function __construct($message, $code = 0, Exception $previous = null) {
        parent::__construct($message, $code, $previous);
    }

    // custom string representation of object
    public function __toString() {
        return __CLASS__ . ": [{$this->code}]: {$this->message}\n"; //edit this to your need
    }

}

class MyCustomExtension extends MY_Exceptions {} //define your exceptions