Help for this page

Select Code to Download


  1. or download this
    MyExceptions::SomeThingy
    MyExceptions::SomeThingy::SomeSpecificError
    MyExceptions::SomeThingy::AnotherProblem
    MyExceptions::SomeThingy::DontDoThat
    
  2. or download this
    MyException::SomeThingy' => {
            isa         => 'MyException',
            description => 'Bad things happen here.',
            fields      => [ 'descriptor', 'value' ],
    };
    
  3. or download this
    MyException::SomeThingy->throw(
                'error'      => 'You did something I didnt like.',
                'descriptor' => 'DontDoThat',
                'value'   => $bad_variable,
    );