Laravel custom exception

clipboard.png

laravel5.2 excel import function

imported excel tables must be cleared before they can be imported normally. If not, this exception will be reported.

how to customize this exception.

Apr.05,2021

try to catch an exception on the line where the import is performed, for example

try{
    //
}catch(ErrorException $e){
    //
}
Menu