diff Lib/IMPL/Exception.pm @ 97:964587c5183c

Added SecureCall to Web QueryHandlers stack many bug fixes to Security and Web Application modules
author wizard
date Tue, 04 May 2010 04:04:37 +0400
parents 79bf75223afe
children 0dce0470a3d8
line wrap: on
line diff
--- a/Lib/IMPL/Exception.pm	Fri Apr 30 15:03:38 2010 +0400
+++ b/Lib/IMPL/Exception.pm	Tue May 04 04:04:37 2010 +0400
@@ -104,6 +104,10 @@
 our @ISA = qw(IMPL::Exception);
 __PACKAGE__->PassThroughArgs;
 
+package IMPL::AccessDeniedException;
+our @ISA = qw(IMPL::SecurityException);
+our %CTOR = ( 'IMPL::SecurityException' => sub { 'Access denied' ,@_ } );
+
 package Exception;
 our @ISA = qw(IMPL::Exception);
 __PACKAGE__->PassThroughArgs;