line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package CatalystX::ASP::Exception::End; |
2
|
|
|
|
|
|
|
|
3
|
9
|
|
|
9
|
|
37
|
use Moose; |
|
9
|
|
|
|
|
47
|
|
|
9
|
|
|
|
|
44
|
|
4
|
9
|
|
|
9
|
|
35470
|
use namespace::clean -except => 'meta'; |
|
9
|
|
|
|
|
14
|
|
|
9
|
|
|
|
|
81
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
with 'Catalyst::Exception::Basic'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
CatalystX::ASP::Exception::End - Exception to end ASP processing |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 DESCRIPTION |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
This is the class for the Catalyst Exception which is thrown then you call |
15
|
|
|
|
|
|
|
C<< $Response->End() >>. |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This class is not intended to be used directly by users. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=cut |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
has '+message' => ( |
22
|
|
|
|
|
|
|
default => "asp_end\n", |
23
|
|
|
|
|
|
|
); |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__END__ |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 SEE ALSO |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=over |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=item * L<Catalyst> |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=item * L<Catalyst::Exception> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=back |