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

use Moose;
extends 'Throwable::Error';
use Moose;
extends 'Throwable::Error';
has code => (
is => 'ro',
isa => 'Str',
required => 1,
);
has request_id => (
is => 'ro',
isa => 'Str',
required => 1,
);
has http_status => (
is => 'ro',
isa => 'Int',
);
1;