Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

$Net::Amazon::EC2::Error::VERSION = '0.36';
use Moose;
=head1 NAME
Net::Amazon::EC2::Error
=head1 DESCRIPTION
A class representing an EC2 API error.
=head1 ATTRIBUTES
=over
=item code (required)
The error code returned from the API request.
=item message (required)
The long form message about the error.
=cut
use overload '""' => 'as_string';
has 'code' => ( is => 'ro', isa => 'Str', required => 1 );
has 'message' => ( is => 'ro', isa => 'Str', required => 1 );
sub as_string {
my $self = shift;
return '['.$self->code.'] '.$self->message;
}
__PACKAGE__->meta->make_immutable();
=back
=head1 AUTHOR
Jeff Kim <cpan@chosec.com>
=head1 COPYRIGHT
Copyright (c) 2006-2010 Jeff Kim. This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
no Moose;
1;