Net::Amazon::S3::Error::Handler::X - Throw error specific exception
Raise error specific exception.
For S3 errors exception it raises is instance of
"Net::Amazon::S3::X::error-code". AWS error
code list can be found at
<https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList>
my $s3 = Net::Amazon::S3->new (
error_handler_class => 'Net::Amazon::S3::Error::Handler::X',
...
);
eval { do s3 operation; 1 } or do {
say 'access denied'
if $@->$Safe::Isa::_isa ('Net::Amazon::S3::X::AccessDenied');
...
};
Branislav Zahradník <barney@cpan.org>
This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard,
Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník.
This is free software; you can redistribute it and/or modify it
under the same terms as the Perl 5 programming language system itself.