File Coverage

blib/lib/Articulate/Error/Forbidden.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Articulate::Error::Forbidden;
2 10     10   4349 use strict;
  10         14  
  10         320  
3 10     10   38 use warnings;
  10         57  
  10         225  
4              
5 10     10   79 use Moo;
  10         12  
  10         56  
6             extends 'Articulate::Error';
7              
8             =head1 NAME
9              
10             Articulate::Error::Unauthorised - represent an error arising from a forbidden action
11              
12             =cut
13              
14             =head3 DESCRIPTION
15              
16             This class extends Articulate::Error and merely sets two default values:
17              
18             =head3 simple_message
19              
20             This defaults to C<'Forbidden'>.
21              
22             =head3 http_code
23              
24             This defaults to C<403>.
25              
26             =cut
27              
28             has '+simple_message' => ( default => 'Forbidden', );
29              
30             has '+http_code' => ( default => 403, );
31              
32             1;