root/lang/perl/Error-Hierarchy/trunk/lib/Error/Hierarchy/Internal/NoArrayRef.pm @ 16477

Revision 16477, 3.3 kB (checked in by hanekomu, 5 years ago)

continued to update distribution to standard style

Line 
1package Error::Hierarchy::Internal::NoArrayRef;
2
3# $Id: NoArrayRef.pm 8408 2005-02-16 15:46:52Z gr $
4
5use warnings;
6use strict;
7
8use base 'Error::Hierarchy::Internal::CustomMessage';
9
10
11our $VERSION = '0.05';
12
13
141;
15
16
17__END__
18
19
20
21=head1 NAME
22
23Error::Hierarchy::Internal::NoArrayRef - when you expected an array ref
24
25=head1 SYNOPSIS
26
27  Error::Hierarchy::Internal::NoArrayRef->throw;
28
29=head1 DESCRIPTION
30
31This class implements an exception that is meant to be thrown when you
32expected an array reference but got something else.
33
34=head1 PROPERTIES
35
36This exception class inherits all properties of
37L<Error::Hierarchy::Internal::CustomMessage>.
38
39It has no additional properties.
40
41=head1 METHODS
42
43=over 4
44
45
46
47=back
48
49Error::Hierarchy::Internal::NoArrayRef inherits from
50L<Error::Hierarchy::Internal::CustomMessage>.
51
52The superclass L<Error::Hierarchy::Internal> defines these methods and
53functions:
54
55    is_optional(), stringify()
56
57The superclass L<Error::Hierarchy> defines these methods and functions:
58
59    acknowledged(), acknowledged_clear(), acknowledged_set(),
60    clear_acknowledged(), clear_is_optional(), comparable(), error_depth(),
61    get_properties(), init(), is_optional_clear(), is_optional_set(),
62    properties_as_hash(), set_acknowledged(), set_is_optional(),
63    transmute()
64
65The superclass L<Error::Hierarchy::Base> defines these methods and
66functions:
67
68    new(), dump_as_yaml(), dump_raw()
69
70The superclass L<Error> defines these methods and functions:
71
72    _throw_Error_Simple(), associate(), catch(), file(), flush(), import(),
73    object(), prior(), record(), text(), throw(), value(), with()
74
75The superclass L<Data::Inherited> defines these methods and functions:
76
77    every_hash(), every_list(), flush_every_cache_by_key()
78
79The superclass L<Class::Accessor::Complex> defines these methods and
80functions:
81
82    mk_abstract_accessors(), mk_array_accessors(), mk_boolean_accessors(),
83    mk_class_array_accessors(), mk_class_hash_accessors(),
84    mk_class_scalar_accessors(), mk_concat_accessors(),
85    mk_forward_accessors(), mk_hash_accessors(), mk_integer_accessors(),
86    mk_new(), mk_object_accessors(), mk_scalar_accessors(),
87    mk_set_accessors(), mk_singleton()
88
89The superclass L<Class::Accessor> defines these methods and functions:
90
91    _carp(), _croak(), _mk_accessors(), accessor_name_for(),
92    best_practice_accessor_name_for(), best_practice_mutator_name_for(),
93    follow_best_practice(), get(), make_accessor(), make_ro_accessor(),
94    make_wo_accessor(), mk_accessors(), mk_ro_accessors(),
95    mk_wo_accessors(), mutator_name_for(), set()
96
97The superclass L<Class::Accessor::Installer> defines these methods and
98functions:
99
100    install_accessor()
101
102=head1 BUGS AND LIMITATIONS
103
104No bugs have been reported.
105
106Please report any bugs or feature requests through the web interface at
107L<http://rt.cpan.org>.
108
109=head1 INSTALLATION
110
111See perlmodinstall for information and options on installing Perl modules.
112
113=head1 AVAILABILITY
114
115The latest version of this module is available from the Comprehensive Perl
116Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN
117site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>.
118
119=head1 AUTHORS
120
121Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >>
122
123=head1 COPYRIGHT AND LICENSE
124
125Copyright 2004-2008 by the authors.
126
127This library is free software; you can redistribute it and/or modify
128it under the same terms as Perl itself.
129
130
131=cut
132
Note: See TracBrowser for help on using the browser.