line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Perl::ToPerl6::Exception::Configuration::Option::Global; |
2
|
|
|
|
|
|
|
|
3
|
17
|
|
|
17
|
|
11371
|
use 5.006001; |
|
17
|
|
|
|
|
140
|
|
4
|
17
|
|
|
17
|
|
82
|
use strict; |
|
17
|
|
|
|
|
27
|
|
|
17
|
|
|
|
|
391
|
|
5
|
17
|
|
|
17
|
|
71
|
use warnings; |
|
17
|
|
|
|
|
25
|
|
|
17
|
|
|
|
|
916
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
our $VERSION = '0.031'; |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
#----------------------------------------------------------------------------- |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
use Exception::Class ( |
12
|
17
|
|
|
|
|
217
|
'Perl::ToPerl6::Exception::Configuration::Option::Global' => { |
13
|
|
|
|
|
|
|
isa => 'Perl::ToPerl6::Exception::Configuration::Option', |
14
|
|
|
|
|
|
|
description => 'A problem with global Perl::ToPerl6 configuration.', |
15
|
|
|
|
|
|
|
}, |
16
|
17
|
|
|
17
|
|
90
|
); |
|
17
|
|
|
|
|
28
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
#----------------------------------------------------------------------------- |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
1; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__END__ |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
#----------------------------------------------------------------------------- |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=pod |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=for stopwords |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 NAME |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
Perl::ToPerl6::Exception::Configuration::Option::Global - A problem with L<Perl::ToPerl6|Perl::ToPerl6> global configuration. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 DESCRIPTION |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
A representation of a problem found with the global configuration of |
37
|
|
|
|
|
|
|
L<Perl::ToPerl6|Perl::ToPerl6>, whether from a F<.perlmogrifyrc>, another |
38
|
|
|
|
|
|
|
profile file, or command line. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This is an abstract class. It should never be instantiated. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 INTERFACE SUPPORT |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
This is considered to be a public class. Any changes to its interface |
46
|
|
|
|
|
|
|
will go through a deprecation cycle. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=head1 AUTHOR |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
Elliot Shank <perl@galumph.com> |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head1 COPYRIGHT |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
Copyright (c) 2007-2011 Elliot Shank. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify |
58
|
|
|
|
|
|
|
it under the same terms as Perl itself. The full text of this license |
59
|
|
|
|
|
|
|
can be found in the LICENSE file included with this module. |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=cut |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
# Local Variables: |
64
|
|
|
|
|
|
|
# mode: cperl |
65
|
|
|
|
|
|
|
# cperl-indent-level: 4 |
66
|
|
|
|
|
|
|
# fill-column: 78 |
67
|
|
|
|
|
|
|
# indent-tabs-mode: nil |
68
|
|
|
|
|
|
|
# c-indentation-style: bsd |
69
|
|
|
|
|
|
|
# End: |
70
|
|
|
|
|
|
|
# ex: set ts=8 sts=4 sw=4 tw=78 ft=perl expandtab shiftround : |