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