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