}
class theClass
{
    public function run()
    {
        try {
            try {
                throw new theExceptionOne('Error1 happened!');
                throw new theExceptionTwo('Error2 happened!');
                throw new theException('Error0 happened!');
            } catch (Exception $e) {
                echo "0";
                throw $e;
            } catch (theExceptionOne $e) {
                echo "A";
                throw $e;
            } catch (theExceptionTwo $e) {
                echo "B";
                throw $e;
            }
        } catch (theExceptionTwo $e) {
            echo "2";
        } catch (theExceptionOne $e) {
            echo "1";
        } catch (theException $e) {
            echo "Z";
        }
    }
}
$test = new theClass();
$test->run();
Esempio n. 2
0
<?php

class theException extends Exception
{
}
class theClass
{
    public function run($isrunning)
    {
        try {
            if ($isrunning) {
                echo "Stopping program!";
            } else {
                throw new theException("Error happened!");
            }
        } catch (Exception $e) {
            echo "Starting program!";
        } catch (theException $e) {
            echo "Restarting program from defaults!";
        }
    }
}
$test = new theClass();
$test->run(false);