view Lib/Engine/Security/AccessDeniedException.pm @ 56:117b6956d5a5

Web application in progress
author wizard
date Thu, 04 Mar 2010 15:46:17 +0300
parents 16ada169ca75
children
line wrap: on
line source

package Engine::Security::AccessDeniedException;
use strict;
use Common;
our @ISA = qw(Exception);

sub CTOR {
    my ($this,$message,@args) = @_;
    
    $this->SUPER::CTOR($message ? $message : 'Access denied',@args);
}


1;