The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Magpie::Error;
{
  $Magpie::Error::VERSION = '1.131380';
}
use Moose;
extends 'HTTP::Throwable::Factory';

sub roles_for_no_ident {
    my ($self, $ident) = @_;
    return qw(
        HTTP::Throwable::Role::Generic
    );
}

sub extra_roles {
    return qw(
        Magpie::Error::Simplified
    );
}


1;
__END__
=pod

=head1 NAME

Magpie::Error

=head1 VERSION

version 1.131380

=head1 AUTHORS

=over 4

=item *

Kip Hampton <kip.hampton@tamarou.com>

=item *

Chris Prather <chris.prather@tamarou.com>

=back

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Tamarou, LLC.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut