summaryrefslogtreecommitdiff
path: root/lib/Data/MultiValued/Exceptions.pm
blob: 5597324140ded605efa3c633e13fca9e19680120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
package Data::MultiValued::Exceptions; 
{
  $Data::MultiValued::Exceptions::VERSION = '0.0.2';
}
{
  $Data::MultiValued::Exceptions::DIST = 'Data-MultiValued';
}
 
# ABSTRACT: exception classes 
 
 
package Data::MultiValued::Exceptions::NotFound; 
{
  $Data::MultiValued::Exceptions::NotFound::VERSION = '0.0.2';
}
{
  $Data::MultiValued::Exceptions::NotFound::DIST = 'Data-MultiValued';
}{
use Moose;
with 'Throwable';
use overload
  q{""}    => 'as_string',
  fallback => 1;
 
has message => (
    is => 'ro',
    required => 1,
);
 
has value => (
    is => 'ro',
    required => 1,
);
 
sub as_string {
    my ($self) = @_;
 
    my $str = $self->message . ($self->value // '<undef>');
 
    return $str;
}
}
 
 
package Data::MultiValued::Exceptions::TagNotFound; 
{
  $Data::MultiValued::Exceptions::TagNotFound::VERSION = '0.0.2';
}
{
  $Data::MultiValued::Exceptions::TagNotFound::DIST = 'Data-MultiValued';
}{
use Moose;
extends 'Data::MultiValued::Exceptions::NotFound';
 
has '+message' => (
    default => 'tag not found: ',
);
}
 
 
package Data::MultiValued::Exceptions::RangeNotFound; 
{
  $Data::MultiValued::Exceptions::RangeNotFound::VERSION = '0.0.2';
}
{
  $Data::MultiValued::Exceptions::RangeNotFound::DIST = 'Data-MultiValued';
}{
use Moose;
extends 'Data::MultiValued::Exceptions::NotFound';
 
has '+message' => (
    default => 'no range found for value: ',
);
}
 
 
package Data::MultiValued::Exceptions::BadRange; 
{
  $Data::MultiValued::Exceptions::BadRange::VERSION = '0.0.2';
}
{
  $Data::MultiValued::Exceptions::BadRange::DIST = 'Data-MultiValued';
}{
use Moose;
with 'Throwable';
use overload
  q{""}    => 'as_string',
  fallback => 1;
 
has ['from','to'] => ( is => 'ro'required => 1 );
 
sub as_string {
    my ($self) = @_;
 
    my $str = 'invalid range: ' . $self->from . '' . $self->to;
 
    return $str;
}
 
}
 
1;
 
__END__
=pod
 
=encoding utf-8
 
=head1 NAME
 
Data::MultiValued::Exceptions - exception classes
 
=head1 VERSION
 
version 0.0.2
 
=head1 DESCRIPTION
 
This module defines a few exception classes, using L<Throwable::Error>
as a base class.
 
=head1 CLASSES
 
=head2 C<Data::MultiValued::Exceptions::NotFound>
 
Base class for "not found" errors. Has a C<value> attribute,
containing the value that was not found.
 
=head2 C<Data::MultiValued::Exceptions::TagNotFound>
 
Subclass of L</Data::MultiValued::Exceptions::NotFound>, for
tags. Stringifies to:
 
  tag not found: $value
 
=head2 C<Data::MultiValued::Exceptions::RangeNotFound>
 
Subclass of L</Data::MultiValued::Exceptions::NotFound>, for
ranges. Stringifies to:
 
  no range found for value: $value
 
=head2 C<Data::MultiValued::Exceptions::BadRange>
 
Thrown when an invalid range is supplied to a method. An invalid range
is a range with C<from> greater than C<to>.
 
Stringifies to:
 
  invalid range: $from, $to
 
=head1 AUTHOR
 
Gianni Ceccarelli <dakkar@thenautilus.net>
 
=head1 COPYRIGHT AND LICENSE
 
This software is copyright (c) 2011 by Net-a-Porter.com.
 
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