foo
Stevan Little [Mon, 3 Jul 2006 21:26:56 +0000 (21:26 +0000)]
Changes
lib/Moose.pm

diff --git a/Changes b/Changes
index 6fa1e53..9ed102a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,11 @@
 Revision history for Perl extension Moose
 
+0.09_04
+    ++ DEVELOPER RELEASE ++
+    * Moose
+      - improved error message when loading modules so
+        it is less confusing when you load a role.
+
 0.09_03
     ++ DEVELOPER RELEASE ++
     * Moose
index 2b4a68a..86a904a 100644 (file)
@@ -179,7 +179,7 @@ sub _load_all_classes {
         next if _is_class_already_loaded($super);
         # otherwise require it ...
         ($super->require)
-            || confess "Could not load superclass '$super' because : " . $UNIVERSAL::require::ERROR;
+            || confess "Could not load module '$super' because : " . $UNIVERSAL::require::ERROR;
     }    
 }