DOKK / manpages / debian 10 / libcloudflare-client-perl / CloudFlare::Client::Exception::Upstream.3pm.en
CloudFlare::Client::Exception::Upstream(3pm) User Contributed Perl Documentation CloudFlare::Client::Exception::Upstream(3pm)

CloudFlare::Client::Exception::Upstream - Upstream CloudFlare API Exception

version v0.55.4

    use CloudFlare::Client::Exception::Upstream;
    CloudFlare::Client::Exception::Upstream::->throw(
        message   => 'Bad things occured',
        errorCode => 'E_MAXAPI',
    );
    my $e = CloudFlare::Client::Exception::Upstream::->new(
        message   => 'Bad things happened',
        errorcode => 'E_MAXAPI',
    );
    $e->throw;

The error message thrown upstream, readonly

The error code thrown upstream, readonly. Valid values are undef, E_UNAUTH, E_INVLDINPUT or E_MAXAPI. Readonly

On the class, throw a new exception

    CloudFlare::Client::Exception::Upstream::->throw(
        message   => 'Bad things occured',
        errorCode => 'E_MAXAPI',
    );
    ...

On an instance, throw that exception

    $e->throw;

Construct a new exception

    my $e = CloudFlare::Client::Exception::Upstream::->new(
        message   => 'Bad things happened',
        errorcode => 'E_MAXAPI',
    );

Please see those modules/websites for more information related to this module.

CloudFlare::Client

You can find documentation for this module with the perldoc command.

  perldoc CloudFlare::Client

The following websites have more information about this module, and may be of help to you. As always, in addition to those websites please use your favorite search engine to discover more resources.

MetaCPAN

A modern, open-source CPAN search engine, useful to view POD in HTML format.

<http://metacpan.org/release/CloudFlare-Client>

You can email the author of this module at "me+dev@peter-r.co.uk" asking for help with any problems you have.

The code is open to the world, and available for you to hack on. Please feel free to browse it and play with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull from your repository :)

<https://github.com/pwr22/cloudflare-client>

  git clone git://github.com/pwr22/cloudflare-client.git

Please report any bugs or feature requests on the bugtracker website https://github.com/pwr22/cloudflare-client/issues

When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.

Peter Roberts <me+dev@peter-r.co.uk>

This software is Copyright (c) 2016 by Peter Roberts.

This is free software, licensed under:

  The MIT (X11) License
2018-12-20 perl v5.28.1