1Error::Simple(3) User Contributed Perl Documentation Error::Simple(3)
2
3
4
6 version 0.17028
7
9 use base 'Error::Simple';
10
12 The only purpose of this module is to allow one to say:
13
14 use base 'Error::Simple';
15
16 and the only thing it does is "use" Error.pm. Refer to the
17 documentation of Error for more information about Error::Simple.
18
20 Error::Simple - the simple error sub-class of Error
21
23 Error::Simple->new($text [, $value])
24 Constructs an Error::Simple with the text $text and the optional value
25 $value.
26
27 $err->stringify()
28 Error::Simple overloads this method.
29
31 None.
32
34 Shlomi Fish ( <http://www.shlomifish.org/> )
35
37 Error
38
40 Websites
41 The following websites have more information about this module, and may
42 be of help to you. As always, in addition to those websites please use
43 your favorite search engine to discover more resources.
44
45 · MetaCPAN
46
47 A modern, open-source CPAN search engine, useful to view POD in
48 HTML format.
49
50 <https://metacpan.org/release/Error>
51
52 · Search CPAN
53
54 The default CPAN search engine, useful to view POD in HTML format.
55
56 <http://search.cpan.org/dist/Error>
57
58 · RT: CPAN's Bug Tracker
59
60 The RT ( Request Tracker ) website is the default bug/issue
61 tracking system for CPAN.
62
63 <https://rt.cpan.org/Public/Dist/Display.html?Name=Error>
64
65 · AnnoCPAN
66
67 The AnnoCPAN is a website that allows community annotations of Perl
68 module documentation.
69
70 <http://annocpan.org/dist/Error>
71
72 · CPAN Ratings
73
74 The CPAN Ratings is a website that allows community ratings and
75 reviews of Perl modules.
76
77 <http://cpanratings.perl.org/d/Error>
78
79 · CPANTS
80
81 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
82 of a distribution.
83
84 <http://cpants.cpanauthors.org/dist/Error>
85
86 · CPAN Testers
87
88 The CPAN Testers is a network of smoke testers who run automated
89 tests on uploaded CPAN distributions.
90
91 <http://www.cpantesters.org/distro/E/Error>
92
93 · CPAN Testers Matrix
94
95 The CPAN Testers Matrix is a website that provides a visual
96 overview of the test results for a distribution on various
97 Perls/platforms.
98
99 <http://matrix.cpantesters.org/?dist=Error>
100
101 · CPAN Testers Dependencies
102
103 The CPAN Testers Dependencies is a website that shows a chart of
104 the test results of all dependencies for a distribution.
105
106 <http://deps.cpantesters.org/?module=Error>
107
108 Bugs / Feature Requests
109 Please report any bugs or feature requests by email to "bug-error at
110 rt.cpan.org", or through the web interface at
111 <https://rt.cpan.org/Public/Bug/Report.html?Queue=Error>. You will be
112 automatically notified of any progress on the request by the system.
113
114 Source Code
115 The code is open to the world, and available for you to hack on. Please
116 feel free to browse it and play with it, or whatever. If you want to
117 contribute patches, please send me a diff or prod me to pull from your
118 repository :)
119
120 <https://github.com/shlomif/perl-error.pm>
121
122 git clone git://github.com/shlomif/perl-error.pm.git
123
125 Shlomi Fish ( http://www.shlomifish.org/ )
126
128 Please report any bugs or feature requests on the bugtracker website
129 <https://github.com/shlomif/perl-error.pm/issues>
130
131 When submitting a bug or request, please include a test-file or a patch
132 to an existing test-file that illustrates the bug or desired feature.
133
135 This software is copyright (c) 2019 by Shlomi Fish (
136 http://www.shlomifish.org/ ).
137
138 This is free software; you can redistribute it and/or modify it under
139 the same terms as the Perl 5 programming language system itself.
140
141
142
143perl v5.30.0 2019-08-26 Error::Simple(3)