summaryrefslogtreecommitdiff
path: root/pod/modpods/Carp.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/modpods/Carp.pod')
-rw-r--r--pod/modpods/Carp.pod22
1 files changed, 0 insertions, 22 deletions
diff --git a/pod/modpods/Carp.pod b/pod/modpods/Carp.pod
deleted file mode 100644
index b5439779ac..0000000000
--- a/pod/modpods/Carp.pod
+++ /dev/null
@@ -1,22 +0,0 @@
-=head1 NAME
-
-carp - warn of errors (from perspective of caller)
-
-croak - die of errors (from perspective of caller)
-
-confess - die of errors with stack backtrace
-
-=head1 SYNOPSIS
-
- use Carp;
- croak "We're outta here!";
-
-=head1 DESCRIPTION
-
-The Carp routines are useful in your own modules because
-they act like die() or warn(), but report where the error
-was in the code they were called from. Thus if you have a
-routine Foo() that has a carp() in it, then the carp()
-will report the error as occurring where Foo() was called,
-not where carp() was called.
-