line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package SyForm::Exception::UnknownErrorOnValuesBuildResults; |
2
|
|
|
|
|
|
|
BEGIN { |
3
|
1
|
|
|
1
|
|
1060
|
$SyForm::Exception::UnknownErrorOnValuesBuildResults::AUTHORITY = 'cpan:GETTY'; |
4
|
|
|
|
|
|
|
} |
5
|
|
|
|
|
|
|
$SyForm::Exception::UnknownErrorOnValuesBuildResults::VERSION = '0.103'; |
6
|
1
|
|
|
1
|
|
7
|
use Moo; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
7
|
|
|
|
|
|
|
extends 'SyForm::Exception'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
with qw( |
10
|
|
|
|
|
|
|
SyForm::Exception::Role::WithSyFormValues |
11
|
|
|
|
|
|
|
SyForm::Exception::Role::WithOriginalError |
12
|
|
|
|
|
|
|
); |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub throw_with_args { |
15
|
0
|
|
|
0
|
0
|
|
my ( $class, $values, $original_error ) = @_; |
16
|
0
|
|
|
|
|
|
$class->rethrow_syform_exception($original_error); |
17
|
0
|
|
|
|
|
|
$class->throw($class->error_message_text($original_error).' on build of results', |
18
|
|
|
|
|
|
|
values => $values, |
19
|
|
|
|
|
|
|
original_error => $original_error, |
20
|
|
|
|
|
|
|
); |
21
|
|
|
|
|
|
|
}; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
1; |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__END__ |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
=pod |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 NAME |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
SyForm::Exception::UnknownErrorOnValuesBuildResults |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 VERSION |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
version 0.103 |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 AUTHOR |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
Torsten Raudssus <torsten@raudss.us> |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
This software is copyright (c) 2014 by Torsten Raudssus. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
This is free software; you can redistribute it and/or modify it under |
46
|
|
|
|
|
|
|
the same terms as the Perl 5 programming language system itself. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=cut |