changeset 131:3df87ee58bee

Added IMPL::IOException
author wizard
date Wed, 16 Jun 2010 17:49:12 +0400
parents 06a34c197b05
children 42fbb38d4a48
files Lib/IMPL/Exception.pm
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/Lib/IMPL/Exception.pm	Wed Jun 16 01:50:56 2010 +0400
+++ b/Lib/IMPL/Exception.pm	Wed Jun 16 17:49:12 2010 +0400
@@ -124,4 +124,8 @@
     'IMPL::Exception' => sub { "The input data is wrong", @_ }
 );
 
+package IMPL::IOException;
+our @ISA = qw(IMPL::Exception);
+__PACKAGE__->PassThroughArgs;
+
 1;