<?php abstract class ExceptionA extends Exception {} class ExceptionB extends ExceptionA {} class ExceptionTest { public function example() { try { throw new ExceptionB(); } catch ( ExceptionB $e ) { echo 'ExceptionB was caught'; } catch ( ExceptionA $e ) { echo 'ExceptionA was caught'; } catch ( Exception $e ) { echo 'Exception was caught'; } } } (new ExceptionTest())->example();
You have javascript disabled. You will not be able to edit any code.