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.17029
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 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 • CPAN Ratings
66
67 The CPAN Ratings is a website that allows community ratings and
68 reviews of Perl modules.
69
70 <http://cpanratings.perl.org/d/Error>
71
72 • CPANTS
73
74 The CPANTS is a website that analyzes the Kwalitee ( code metrics )
75 of a distribution.
76
77 <http://cpants.cpanauthors.org/dist/Error>
78
79 • CPAN Testers
80
81 The CPAN Testers is a network of smoke testers who run automated
82 tests on uploaded CPAN distributions.
83
84 <http://www.cpantesters.org/distro/E/Error>
85
86 • CPAN Testers Matrix
87
88 The CPAN Testers Matrix is a website that provides a visual
89 overview of the test results for a distribution on various
90 Perls/platforms.
91
92 <http://matrix.cpantesters.org/?dist=Error>
93
94 • CPAN Testers Dependencies
95
96 The CPAN Testers Dependencies is a website that shows a chart of
97 the test results of all dependencies for a distribution.
98
99 <http://deps.cpantesters.org/?module=Error>
100
101 Bugs / Feature Requests
102 Please report any bugs or feature requests by email to "bug-error at
103 rt.cpan.org", or through the web interface at
104 <https://rt.cpan.org/Public/Bug/Report.html?Queue=Error>. You will be
105 automatically notified of any progress on the request by the system.
106
107 Source Code
108 The code is open to the world, and available for you to hack on. Please
109 feel free to browse it and play with it, or whatever. If you want to
110 contribute patches, please send me a diff or prod me to pull from your
111 repository :)
112
113 <https://github.com/shlomif/perl-error.pm>
114
115 git clone git://github.com/shlomif/perl-error.pm.git
116
118 Shlomi Fish ( http://www.shlomifish.org/ )
119
121 Please report any bugs or feature requests on the bugtracker website
122 <https://github.com/shlomif/perl-error.pm/issues>
123
124 When submitting a bug or request, please include a test-file or a patch
125 to an existing test-file that illustrates the bug or desired feature.
126
128 This software is copyright (c) 2020 by Shlomi Fish (
129 http://www.shlomifish.org/ ).
130
131 This is free software; you can redistribute it and/or modify it under
132 the same terms as the Perl 5 programming language system itself.
133
134
135
136perl v5.36.0 2023-01-20 Error::Simple(3)