BL_Exceptions.php というシステム/コア クラスにカスタム クラスを作成します。しかし、カスタム クラスを使用すると、BL_Exception クラスが見つからないと表示されます。
if( $type == 'customer') {
$this->template->load('customer_new');
}else{
throw new BL_Exceptions(10001);
}
BL_Exceptions.php というシステム/コア クラスにカスタム クラスを作成します。しかし、カスタム クラスを使用すると、BL_Exception クラスが見つからないと表示されます。
if( $type == 'customer') {
$this->template->load('customer_new');
}else{
throw new BL_Exceptions(10001);
}