line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::GPSD3::Return::ERROR; |
2
|
2
|
|
|
2
|
|
766
|
use strict; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
57
|
|
3
|
2
|
|
|
2
|
|
9
|
use warnings; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
51
|
|
4
|
2
|
|
|
2
|
|
8
|
use base qw{Net::GPSD3::Return::Unknown}; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
232
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
our $VERSION='0.12'; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
Net::GPSD3::Return::ERROR - Net::GPSD3 Return ERROR Object |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 SYNOPSIS |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
=head1 DESCRIPTION |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
Provides a Perl object interface to the ERROR object returned by the GPSD daemon. |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 METHODS |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head2 class |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Returns the object class |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 string |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Returns the JSON string |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 parent |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Return the parent Net::GPSD object |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 message |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Textual error message. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=cut |
37
|
|
|
|
|
|
|
|
38
|
1
|
|
|
1
|
1
|
4
|
sub message {shift->{"message"}}; |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 BUGS |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Log on RT and Send to gpsd-dev email list |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=head1 SUPPORT |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
DavisNetworks.com supports all Perl applications including this package. |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
Try gpsd-dev email list |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head1 AUTHOR |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
Michael R. Davis |
53
|
|
|
|
|
|
|
CPAN ID: MRDVT |
54
|
|
|
|
|
|
|
STOP, LLC |
55
|
|
|
|
|
|
|
domain=>michaelrdavis,tld=>com,account=>perl |
56
|
|
|
|
|
|
|
http://www.stopllc.com/ |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 COPYRIGHT |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
This program is free software licensed under the... |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
The BSD License |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
The full text of the license can be found in the LICENSE file included with this module. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 SEE ALSO |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
L, L |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=cut |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
1; |