From 829d1e13497374ef04ce83ed690f5782796e0d62 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 13 Aug 2010 16:59:12 +0200 Subject: Add README, begin documentation for Efa::Error::Setup --- lib/WWW/Efa/Error/Setup.pm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'lib') 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; -- cgit v1.2.3