Hello I has a question if is possible to use below code, I try do it and have lot of errors.
Help me to understand, which is my error.
*try {
throw new InternalException('Internal');
} catch (InternalException $e) {
throw new Exception('Internal To global');
} catch (Exception $e){
*
*
*
* print $e->getMessage();
}
class InternalException extends Exception {
}
*
