comparison Lib/IMPL/Exception.pm @ 131:3df87ee58bee

Added IMPL::IOException
author wizard
date Wed, 16 Jun 2010 17:49:12 +0400
parents 0dce0470a3d8
children 76515373dac0
comparison
equal deleted inserted replaced
130:06a34c197b05 131:3df87ee58bee
122 our @ISA = qw(IMPL::Exception); 122 our @ISA = qw(IMPL::Exception);
123 our %CTOR = ( 123 our %CTOR = (
124 'IMPL::Exception' => sub { "The input data is wrong", @_ } 124 'IMPL::Exception' => sub { "The input data is wrong", @_ }
125 ); 125 );
126 126
127 package IMPL::IOException;
128 our @ISA = qw(IMPL::Exception);
129 __PACKAGE__->PassThroughArgs;
130
127 1; 131 1;