##---------------------------------------------------------------------------- ## Asynchronous HTTP Request and Promise - ~/lib/HTTP/Promise/Exception.pm ## Version v0.1.0 ## Copyright(c) 2022 DEGUEST Pte. Ltd. ## Author: Jacques Deguest ## Created 2022/03/25 ## Modified 2022/03/25 ## All rights reserved ## ## This program is free software; you can redistribute it and/or modify it ## under the same terms as Perl itself. ##---------------------------------------------------------------------------- package HTTP::Promise::Exception; BEGIN { use strict; use warnings; use parent qw( Module::Generic::Exception ); our $VERSION = 'v0.1.0'; }; 1; # NOTE: POD __END__ =encoding utf-8 =head1 NAME HTTP::Promise::Exception - HTTP Exception =head1 SYNOPSIS use HTTP::Promise::Exception; my $this = HTTP::Promise::Exception->new( $error_message ) || die( HTTP::Promise::Exception->error, "\n" ); =head1 VERSION v0.1.0 =head1 DESCRIPTION This class inherits all its methods from L =head1 METHODS Plese see L for details. =head1 AUTHOR Jacques Deguest EFE =head1 SEE ALSO L L, L, L, L, L, L, L, L, L, L, L, L, L, L, L, L =head1 COPYRIGHT & LICENSE Copyright(c) 2022 DEGUEST Pte. Ltd. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut