diff options
Diffstat (limited to 'lib/WWW/Efa/Error/Setup.pm')
-rw-r--r-- | lib/WWW/Efa/Error/Setup.pm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/WWW/Efa/Error/Setup.pm b/lib/WWW/Efa/Error/Setup.pm index 521bb55..e3de3e3 100644 --- a/lib/WWW/Efa/Error/Setup.pm +++ b/lib/WWW/Efa/Error/Setup.pm @@ -1,5 +1,28 @@ package WWW::Efa::Error::Setup; +=head1 NAME + +WWW::Efa::Error::Setup - WWW::Efa error, happened in ->new() + +=head1 SYNOPSIS + + use WWW::Efa::Error::Setup; + + my $error = WWW::Efa::Error::Setup->new( + 'max_interchanges', '-1', 'Must be positive' + ); + + die $error->as_string(); + # WWW::Efa setup error: Wrong arg for option max_interchanges: -1 + # Must be positive + +=head1 DESCRIPTION + +Class for all WWW::Efa-internal errors occuring during initialization. Usually +caused by missing or invalid setup arguments. + +=cut + use strict; use warnings; use 5.010; |