Pod/comment fixes
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Exception.pm
index 3c2aa9b..07f587d 100644 (file)
@@ -3,6 +3,11 @@ package DBIx::Class::Exception;
 use strict;
 use warnings;
 
+# load Carp early to prevent tickling of the ::Internal stash being
+# interpreted as "Carp is already loaded" by some braindead loader
+use Carp ();
+$Carp::Internal{ (__PACKAGE__) }++;
+
 use DBIx::Class::Carp ();
 
 use overload
@@ -83,9 +88,9 @@ sub rethrow {
     die shift;
 }
 
-=head1 AUTHORS
+=head1 AUTHOR AND CONTRIBUTORS
 
-Brandon L. Black <blblack@gmail.com>
+See L<AUTHOR|DBIx::Class/AUTHOR> and L<CONTRIBUTORS|DBIx::Class/CONTRIBUTORS> in DBIx::Class
 
 =head1 LICENSE