=== modified file 'modules/field/field.module'
--- modules/field/field.module	2010-02-07 09:11:28 +0000
+++ modules/field/field.module	2010-02-08 21:31:57 +0000
@@ -5,6 +5,14 @@
  * Attach custom data fields to Drupal objects.
  */
 
+/**
+ * Base class for all exceptions thrown by Field API functions.
+ *
+ * This class has no functionality of its own other than allowing all
+ * Field API exceptions to be caught by a single catch block.
+ */
+class FieldException extends Exception {}
+
 /*
  * Load all public Field API functions. Drupal currently has no
  * mechanism for auto-loading core APIs, so we have to load them on
@@ -116,14 +124,6 @@ define('FIELD_QUERY_COMPLETE', 'FIELD_QU
  */
 
 /**
- * Base class for all exceptions thrown by Field API functions.
- *
- * This class has no functionality of its own other than allowing all
- * Field API exceptions to be caught by a single catch block.
- */
-class FieldException extends Exception {}
-
-/**
  * Exception class thrown by hook_field_update_forbid().
  */
 class FieldUpdateForbiddenException extends FieldException {}

