line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Tree::Simple::Manager::Exceptions; |
3
|
|
|
|
|
|
|
|
4
|
5
|
|
|
5
|
|
26
|
use strict; |
|
5
|
|
|
|
|
10
|
|
|
5
|
|
|
|
|
165
|
|
5
|
5
|
|
|
5
|
|
27
|
use warnings; |
|
5
|
|
|
|
|
7
|
|
|
5
|
|
|
|
|
349
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.02'; |
8
|
|
|
|
|
|
|
|
9
|
5
|
|
|
|
|
29
|
use Class::Throwable qw( |
10
|
|
|
|
|
|
|
Tree::Simple::Manager::InsufficientArguments |
11
|
|
|
|
|
|
|
Tree::Simple::Manager::IllegalOperation |
12
|
|
|
|
|
|
|
Tree::Simple::Manager::KeyDoesNotExist |
13
|
|
|
|
|
|
|
Tree::Simple::Manager::DuplicateName |
14
|
|
|
|
|
|
|
Tree::Simple::Manager::IncorrectObjectType |
15
|
|
|
|
|
|
|
Tree::Simple::Manager::OperationFailed |
16
|
|
|
|
|
|
|
Tree::Simple::Manager::IncorrectObjectType |
17
|
5
|
|
|
5
|
|
5571
|
); |
|
5
|
|
|
|
|
23823
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
$Class::Throwable::DEFAULT_VERBOSITY = 2; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |