diff options
Diffstat (limited to 'modules/field/field.module')
-rw-r--r-- | modules/field/field.module | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/modules/field/field.module b/modules/field/field.module index 5370838db..2505c0fc2 100644 --- a/modules/field/field.module +++ b/modules/field/field.module @@ -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_QUERY_COMPLETE'); */ /** - * 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 {} |