| 1 | package Error::Hierarchy::Internal::NoArrayRef; |
|---|
| 2 | |
|---|
| 3 | # $Id: NoArrayRef.pm 8408 2005-02-16 15:46:52Z gr $ |
|---|
| 4 | |
|---|
| 5 | use warnings; |
|---|
| 6 | use strict; |
|---|
| 7 | |
|---|
| 8 | use base 'Error::Hierarchy::Internal::CustomMessage'; |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | our $VERSION = '0.05'; |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | 1; |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | __END__ |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | =head1 NAME |
|---|
| 22 | |
|---|
| 23 | Error::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 | |
|---|
| 31 | This class implements an exception that is meant to be thrown when you |
|---|
| 32 | expected an array reference but got something else. |
|---|
| 33 | |
|---|
| 34 | =head1 PROPERTIES |
|---|
| 35 | |
|---|
| 36 | This exception class inherits all properties of |
|---|
| 37 | L<Error::Hierarchy::Internal::CustomMessage>. |
|---|
| 38 | |
|---|
| 39 | It has no additional properties. |
|---|
| 40 | |
|---|
| 41 | =head1 METHODS |
|---|
| 42 | |
|---|
| 43 | =over 4 |
|---|
| 44 | |
|---|
| 45 | |
|---|
| 46 | |
|---|
| 47 | =back |
|---|
| 48 | |
|---|
| 49 | Error::Hierarchy::Internal::NoArrayRef inherits from |
|---|
| 50 | L<Error::Hierarchy::Internal::CustomMessage>. |
|---|
| 51 | |
|---|
| 52 | The superclass L<Error::Hierarchy::Internal> defines these methods and |
|---|
| 53 | functions: |
|---|
| 54 | |
|---|
| 55 | is_optional(), stringify() |
|---|
| 56 | |
|---|
| 57 | The 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 | |
|---|
| 65 | The superclass L<Error::Hierarchy::Base> defines these methods and |
|---|
| 66 | functions: |
|---|
| 67 | |
|---|
| 68 | new(), dump_as_yaml(), dump_raw() |
|---|
| 69 | |
|---|
| 70 | The 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 | |
|---|
| 75 | The superclass L<Data::Inherited> defines these methods and functions: |
|---|
| 76 | |
|---|
| 77 | every_hash(), every_list(), flush_every_cache_by_key() |
|---|
| 78 | |
|---|
| 79 | The superclass L<Class::Accessor::Complex> defines these methods and |
|---|
| 80 | functions: |
|---|
| 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 | |
|---|
| 89 | The 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 | |
|---|
| 97 | The superclass L<Class::Accessor::Installer> defines these methods and |
|---|
| 98 | functions: |
|---|
| 99 | |
|---|
| 100 | install_accessor() |
|---|
| 101 | |
|---|
| 102 | =head1 BUGS AND LIMITATIONS |
|---|
| 103 | |
|---|
| 104 | No bugs have been reported. |
|---|
| 105 | |
|---|
| 106 | Please report any bugs or feature requests through the web interface at |
|---|
| 107 | L<http://rt.cpan.org>. |
|---|
| 108 | |
|---|
| 109 | =head1 INSTALLATION |
|---|
| 110 | |
|---|
| 111 | See perlmodinstall for information and options on installing Perl modules. |
|---|
| 112 | |
|---|
| 113 | =head1 AVAILABILITY |
|---|
| 114 | |
|---|
| 115 | The latest version of this module is available from the Comprehensive Perl |
|---|
| 116 | Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN |
|---|
| 117 | site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. |
|---|
| 118 | |
|---|
| 119 | =head1 AUTHORS |
|---|
| 120 | |
|---|
| 121 | Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> |
|---|
| 122 | |
|---|
| 123 | =head1 COPYRIGHT AND LICENSE |
|---|
| 124 | |
|---|
| 125 | Copyright 2004-2008 by the authors. |
|---|
| 126 | |
|---|
| 127 | This library is free software; you can redistribute it and/or modify |
|---|
| 128 | it under the same terms as Perl itself. |
|---|
| 129 | |
|---|
| 130 | |
|---|
| 131 | =cut |
|---|
| 132 | |
|---|