.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "CPANPLUS::Error 3" .TH CPANPLUS::Error 3 2023-07-25 "perl v5.38.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME CPANPLUS::Error \- error handling for CPANPLUS .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& use CPANPLUS::Error qw[cp_msg cp_error]; .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" This module provides the error handling code for the CPANPLUS libraries, and is mainly intended for internal use. .SH FUNCTIONS .IX Header "FUNCTIONS" .SS "cp_msg(""message string"" [,VERBOSE])" .IX Subsection "cp_msg(""message string"" [,VERBOSE])" Records a message on the stack, and prints it to \f(CW\*(C`STDOUT\*(C'\fR (or actually \&\f(CW$MSG_FH\fR, see the \f(CW\*(C`GLOBAL VARIABLES\*(C'\fR section below), if the \&\f(CW\*(C`VERBOSE\*(C'\fR option is true. The \f(CW\*(C`VERBOSE\*(C'\fR option defaults to false. .SS \fBmsg()\fP .IX Subsection "msg()" An alias for \f(CW\*(C`cp_msg\*(C'\fR. .SS "cp_error(""error string"" [,VERBOSE])" .IX Subsection "cp_error(""error string"" [,VERBOSE])" Records an error on the stack, and prints it to \f(CW\*(C`STDERR\*(C'\fR (or actually \&\f(CW$ERROR_FH\fR, see the \f(CW\*(C`GLOBAL VARIABLES\*(C'\fR sections below), if the \&\f(CW\*(C`VERBOSE\*(C'\fR option is true. The \f(CW\*(C`VERBOSE\*(C'\fR options defaults to true. .SS \fBerror()\fP .IX Subsection "error()" An alias for \f(CW\*(C`cp_error\*(C'\fR. .SH "CLASS METHODS" .IX Header "CLASS METHODS" .SS CPANPLUS::Error\->\fBstack()\fP .IX Subsection "CPANPLUS::Error->stack()" Retrieves all the items on the stack. Since \f(CW\*(C`CPANPLUS::Error\*(C'\fR is implemented using \f(CW\*(C`Log::Message\*(C'\fR, consult its manpage for the function \f(CW\*(C`retrieve\*(C'\fR to see what is returned and how to use the items. .SS CPANPLUS::Error\->stack_as_string([TRACE]) .IX Subsection "CPANPLUS::Error->stack_as_string([TRACE])" Returns the whole stack as a printable string. If the \f(CW\*(C`TRACE\*(C'\fR option is true all items are returned with \f(CW\*(C`Carp::longmess\*(C'\fR output, rather than just the message. \&\f(CW\*(C`TRACE\*(C'\fR defaults to false. .SS CPANPLUS::Error\->\fBflush()\fP .IX Subsection "CPANPLUS::Error->flush()" Removes all the items from the stack and returns them. Since \&\f(CW\*(C`CPANPLUS::Error\*(C'\fR is implemented using \f(CW\*(C`Log::Message\*(C'\fR, consult its manpage for the function \f(CW\*(C`retrieve\*(C'\fR to see what is returned and how to use the items. .SH "GLOBAL VARIABLES" .IX Header "GLOBAL VARIABLES" .ie n .IP $ERROR_FH 4 .el .IP \f(CW$ERROR_FH\fR 4 .IX Item "$ERROR_FH" This is the filehandle all the messages sent to \f(CWerror()\fR are being printed. This defaults to \f(CW*STDERR\fR. .ie n .IP $MSG_FH 4 .el .IP \f(CW$MSG_FH\fR 4 .IX Item "$MSG_FH" This is the filehandle all the messages sent to \f(CWmsg()\fR are being printed. This default to \f(CW*STDOUT\fR.