line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package WSST::Schema::Error; |
2
|
|
|
|
|
|
|
|
3
|
5
|
|
|
5
|
|
40
|
use strict; |
|
5
|
|
|
|
|
9
|
|
|
5
|
|
|
|
|
172
|
|
4
|
5
|
|
|
5
|
|
30
|
use base qw(WSST::Schema::Node); |
|
5
|
|
|
|
|
14
|
|
|
5
|
|
|
|
|
435
|
|
5
|
|
|
|
|
|
|
__PACKAGE__->mk_accessors(qw(values error_message error_message_map)); |
6
|
|
|
|
|
|
|
|
7
|
5
|
|
|
5
|
|
60
|
use constant BOOL_FIELDS => qw(multiple nullable error_message); |
|
5
|
|
|
|
|
8
|
|
|
5
|
|
|
|
|
341
|
|
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $VERSION = '0.1.1'; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
WSST::Schema::Error - Schema::Error class of WSST |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 DESCRIPTION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
This class represents the error elements of schema. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 METHODS |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
=head2 new |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
Constructor. |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 values |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
Accessor for the values. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head2 error_message |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
Accessor for the service name. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head2 error_message_map |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Accessor for the service name. |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head1 SEE ALSO |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
http://code.google.com/p/wsst/ |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
=head1 AUTHORS |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
Mitsuhisa Oshikawa |
44
|
|
|
|
|
|
|
Yusuke Kawasaki |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Copyright 2008 WSS Project Team |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=cut |
51
|
|
|
|
|
|
|
1; |