Scroll to navigation

Net::Amazon::S3::Error::Handler::X(3pm) User Contributed Perl Documentation Net::Amazon::S3::Error::Handler::X(3pm)

NAME

Net::Amazon::S3::Error::Handler::X - Throw error specific exception

VERSION

version 0.991

DESCRIPTION

Raise error specific exception.

S3 error

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');
                ...
        };

AUTHOR

Branislav Zahradník <barney@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2022 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.

2022-07-18 perl v5.34.0