
SPOPS::Exception::Security - SPOPS exception with extra security parameters

my $object = eval { My::Class->fetch( $id ) };
if ( $@ ) {
if ( $@->isa( 'SPOPS::Exception::Security' ) ) {
print "Required security: ", $@->security_required, "\n",
"Found security: ", $@->security_found, "\n";
}
}

Same as SPOPS::Exception but we add two new properties:
security_required ($)
Security level that we were trying to meet.
security_found ($)
Security level found.

to_string()
We override the exception stringification to include the requested and found security levels (in human-readable format).
You can also use a shortcut if you are throwing errors:
use SPOPS::Exception::Security qw( spops_security_error );
...
spops_security_error "Security error trying to fetch foo ",
{ security_required => SEC_LEVEL_WRITE,
security_found => SEC_LEVEL_READ };

None known.

Nothing known.


Copyright (c) 2001-2004 intes.net, inc.. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Chris Winters <chris@cwinters.com>