Mercurial > pub > Impl
view Lib/Engine/Security/AccessDeniedException.pm @ 115:5edc2ac5231c
minor fix to the serialization mechanism
author | wizard |
---|---|
date | Wed, 26 May 2010 02:32:22 +0400 |
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;