| Class-Value-Net documentation | Contained in the Class-Value-Net distribution. |
Class::Value::Net::NAPTR::Preference - Network-related value objects
version 1.110250
FIXME
FIXME
See perlmodinstall for information and options on installing Perl modules.
No bugs have been reported.
Please report any bugs or feature requests through the web interface at http://rt.cpan.org/Public/Dist/Display.html?Name=Class-Value-Net.
The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit http://www.perl.com/CPAN/ to find a CPAN site near you, or see http://search.cpan.org/dist/Class-Value-Net/.
The development version lives at http://github.com/hanekomu/Class-Value-Net and may be cloned from git://github.com/hanekomu/Class-Value-Net.git. Instead of sending patches, please fork this project using the standard git and github infrastructure.
Marcel Gruenauer <marcel@cpan.org>
This software is copyright (c) 2004 by Marcel Gruenauer.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
| Class-Value-Net documentation | Contained in the Class-Value-Net distribution. |
use 5.008; use strict; use warnings; package Class::Value::Net::NAPTR::Preference; BEGIN { $Class::Value::Net::NAPTR::Preference::VERSION = '1.110250'; } # ABSTRACT: Network-related value objects use parent 'Class::Value::Net::NAPTR::UInt16'; sub send_notify_value_invalid { my ($self, $value) = @_; local $Error::Depth = $Error::Depth + 2; $self->exception_container->record( 'Class::Value::Net::Exception::NAPTR::InvalidPreference', recordfield => $value,); } sub send_notify_value_not_wellformed { my ($self, $value) = @_; local $Error::Depth = $Error::Depth + 2; $self->exception_container->record( 'Class::Value::Net::Exception::NAPTR::MalformedPreference', recordfield => $value,); } 1; __END__