comparison 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
comparison
equal deleted inserted replaced
96:4c55aed00ff2 97:964587c5183c
102 102
103 package IMPL::SecurityException; 103 package IMPL::SecurityException;
104 our @ISA = qw(IMPL::Exception); 104 our @ISA = qw(IMPL::Exception);
105 __PACKAGE__->PassThroughArgs; 105 __PACKAGE__->PassThroughArgs;
106 106
107 package IMPL::AccessDeniedException;
108 our @ISA = qw(IMPL::SecurityException);
109 our %CTOR = ( 'IMPL::SecurityException' => sub { 'Access denied' ,@_ } );
110
107 package Exception; 111 package Exception;
108 our @ISA = qw(IMPL::Exception); 112 our @ISA = qw(IMPL::Exception);
109 __PACKAGE__->PassThroughArgs; 113 __PACKAGE__->PassThroughArgs;
110 114
111 package IMPL::DeprecatedException; 115 package IMPL::DeprecatedException;