line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Articulate::Error::AlreadyExists; |
2
|
11
|
|
|
11
|
|
4460
|
use strict; |
|
11
|
|
|
|
|
18
|
|
|
11
|
|
|
|
|
350
|
|
3
|
11
|
|
|
11
|
|
44
|
use warnings; |
|
11
|
|
|
|
|
12
|
|
|
11
|
|
|
|
|
245
|
|
4
|
|
|
|
|
|
|
|
5
|
11
|
|
|
11
|
|
39
|
use Moo; |
|
11
|
|
|
|
|
14
|
|
|
11
|
|
|
|
|
46
|
|
6
|
|
|
|
|
|
|
extends 'Articulate::Error'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
Articulate::Error::AlreadyExists - represent an error arising from an attempt to create content which already exists |
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<'Already exists'>. |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head3 http_code |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
This defaults to C<409>. This code is shared with other errors which reflect conflicting actions taken on resources. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=cut |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
has '+simple_message' => ( default => 'Already exists', ); |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
has '+http_code' => ( default => 409, ); |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
1; |