|
Revision 10090, 0.8 kB
(checked in by hanekomu, 5 years ago)
|
|
lang/perl/Class-Value-Contact: initial import
|
| Line | |
|---|
| 1 | package Class::Value::Contact::FaxNumber; |
|---|
| 2 | |
|---|
| 3 | # $Id: FaxNumber.pm 8617 2005-03-23 13:43:00Z gr $ |
|---|
| 4 | |
|---|
| 5 | use strict; |
|---|
| 6 | use warnings; |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | our $VERSION = '0.02'; |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | use base 'Class::Value::Contact::PhoneLikeNumber'; |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | use constant NORMALIZE_EXCEPTION_NAME => |
|---|
| 16 | 'Class::Value::Contact::Exception::ReplaceFaxNo'; |
|---|
| 17 | |
|---|
| 18 | use constant INVALID_VALUE_EXCEPTION_NAME => |
|---|
| 19 | 'Class::Value::Contact::Exception::InvalidFaxNo'; |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | 1; |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | __END__ |
|---|
| 26 | |
|---|
| 27 | {% USE p = PodGenerated %} |
|---|
| 28 | |
|---|
| 29 | =head1 NAME |
|---|
| 30 | |
|---|
| 31 | {% p.package %} - contact-related value objects |
|---|
| 32 | |
|---|
| 33 | =head1 SYNOPSIS |
|---|
| 34 | |
|---|
| 35 | {% p.package %}->new; |
|---|
| 36 | |
|---|
| 37 | =head1 DESCRIPTION |
|---|
| 38 | |
|---|
| 39 | None yet. This is an early release; fully functional, but undocumented. The |
|---|
| 40 | next release will have more documentation. |
|---|
| 41 | |
|---|
| 42 | =head1 METHODS |
|---|
| 43 | |
|---|
| 44 | =over 4 |
|---|
| 45 | |
|---|
| 46 | {% p.write_methods %} |
|---|
| 47 | |
|---|
| 48 | =back |
|---|
| 49 | |
|---|
| 50 | {% p.write_inheritance %} |
|---|
| 51 | |
|---|
| 52 | {% PROCESS standard_pod %} |
|---|
| 53 | |
|---|
| 54 | =cut |
|---|
| 55 | |
|---|