我在名为 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);
}