--- modules/field/field.module	2010-03-12 14:51:40.000000000 -0500
+++ modules/field/field.module.new	2010-03-23 13:54:17.000000000 -0400
@@ -5,6 +5,14 @@
  * Attach custom data fields to Drupal entities.
  */
 
+/**
+ * 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 {}
