File Coverage

blib/lib/Stepford/Error.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Stepford::Error;
2              
3 39     39   297 use strict;
  39         106  
  39         1214  
4 39     39   202 use warnings;
  39         89  
  39         1016  
5 39     39   199 use namespace::autoclean;
  39         90  
  39         370  
6              
7             our $VERSION = '0.006001';
8              
9 39     39   3959 use Moose;
  39         94  
  39         306  
10              
11             extends 'Throwable::Error';
12              
13             __PACKAGE__->meta->make_immutable( inline_constructor => 0 );
14              
15             1;
16              
17             # ABSTRACT: A Stepford exception object
18              
19             __END__
20              
21             =pod
22              
23             =encoding UTF-8
24              
25             =head1 NAME
26              
27             Stepford::Error - A Stepford exception object
28              
29             =head1 VERSION
30              
31             version 0.006001
32              
33             =head1 DESCRIPTION
34              
35             This is a bare subclass of L<Throwable::Error>. It does not add any methods of
36             its own, for now.
37              
38             =head1 SUPPORT
39              
40             Bugs may be submitted through L<https://github.com/maxmind/Stepford/issues>.
41              
42             =head1 AUTHOR
43              
44             Dave Rolsky <drolsky@maxmind.com>
45              
46             =head1 COPYRIGHT AND LICENSE
47              
48             This software is copyright (c) 2014 - 2023 by MaxMind, Inc.
49              
50             This is free software; you can redistribute it and/or modify it under
51             the same terms as the Perl 5 programming language system itself.
52              
53             =cut