| 1 | package Class::Value::Contact::Exception::Name::Invalid; |
|---|
| 2 | |
|---|
| 3 | # $Id: Invalid.pm 9376 2005-06-27 12:23:30Z gr $ |
|---|
| 4 | |
|---|
| 5 | use warnings; |
|---|
| 6 | use strict; |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | our $VERSION = '0.01'; |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | use base 'Class::Value::Contact::Exception::Name'; |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | use constant default_message => 'Invalid name [%s]'; |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | 1; |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | __END__ |
|---|
| 22 | |
|---|
| 23 | =head1 NAME |
|---|
| 24 | |
|---|
| 25 | Class::Value::Contact - contact-related value objects |
|---|
| 26 | |
|---|
| 27 | =head1 SYNOPSIS |
|---|
| 28 | |
|---|
| 29 | None yet (see below). |
|---|
| 30 | |
|---|
| 31 | =head1 DESCRIPTION |
|---|
| 32 | |
|---|
| 33 | None yet. This is an early release; fully functional, but undocumented. The |
|---|
| 34 | next release will have more documentation. |
|---|
| 35 | |
|---|
| 36 | =head1 TAGS |
|---|
| 37 | |
|---|
| 38 | If you talk about this module in blogs, on del.icio.us or anywhere else, |
|---|
| 39 | please use the C<classvaluecontact> tag. |
|---|
| 40 | |
|---|
| 41 | =head1 BUGS AND LIMITATIONS |
|---|
| 42 | |
|---|
| 43 | No bugs have been reported. |
|---|
| 44 | |
|---|
| 45 | Please report any bugs or feature requests to |
|---|
| 46 | C<bug-class-value-contact@rt.cpan.org>, or through the web interface at |
|---|
| 47 | L<http://rt.cpan.org>. |
|---|
| 48 | |
|---|
| 49 | =head1 INSTALLATION |
|---|
| 50 | |
|---|
| 51 | See perlmodinstall for information and options on installing Perl modules. |
|---|
| 52 | |
|---|
| 53 | =head1 AVAILABILITY |
|---|
| 54 | |
|---|
| 55 | The latest version of this module is available from the Comprehensive Perl |
|---|
| 56 | Archive Network (CPAN). Visit <http://www.perl.com/CPAN/> to find a CPAN |
|---|
| 57 | site near you. Or see <http://www.perl.com/CPAN/authors/id/M/MA/MARCEL/>. |
|---|
| 58 | |
|---|
| 59 | =head1 AUTHORS |
|---|
| 60 | |
|---|
| 61 | Marcel GrE<uuml>nauer, C<< <marcel@cpan.org> >> |
|---|
| 62 | |
|---|
| 63 | Heinz Ekker C<< ek@univie.ac.at >> |
|---|
| 64 | |
|---|
| 65 | =head1 COPYRIGHT AND LICENSE |
|---|
| 66 | |
|---|
| 67 | Copyright 2007 by Marcel GrE<uuml>nauer |
|---|
| 68 | |
|---|
| 69 | This library is free software; you can redistribute it and/or modify |
|---|
| 70 | it under the same terms as Perl itself. |
|---|
| 71 | |
|---|
| 72 | =cut |
|---|
| 73 | |
|---|