Class CASAdminException

All Implemented Interfaces:
Serializable, I18nExceptionI

public class CASAdminException extends UIMARuntimeException
See Also:
  • Field Details

    • REPOSITORY_LOCKED

      public static final String REPOSITORY_LOCKED
      Can't add index to a committed repository.
      See Also:
    • TYPE_SYSTEM_LOCKED

      public static final String TYPE_SYSTEM_LOCKED
      Type system is committed; can't add types or features.
      See Also:
    • MUST_COMMIT_TYPE_SYSTEM

      public static final String MUST_COMMIT_TYPE_SYSTEM
      Type system has not been committed; can't create index repository.
      See Also:
    • MUST_COMMIT_INDEX_REPOSITORY

      public static final String MUST_COMMIT_INDEX_REPOSITORY
      Index repository has not been committed; can't create CAS.
      See Also:
    • BAD_TYPE_SYNTAX

      public static final String BAD_TYPE_SYNTAX
      Invalid type name "{0}". Type names must start with a letter and consist only of letters, digits, or underscores.
      See Also:
    • BAD_FEATURE_SYNTAX

      public static final String BAD_FEATURE_SYNTAX
      Invalid feature name "{0}". Feature names must start with a letter and consist only of letters, digits, or underscores.
      See Also:
    • TYPE_IS_INH_FINAL

      public static final String TYPE_IS_INH_FINAL
      Can't derive from type "{0}" since it is inheritance final.
      See Also:
    • TYPE_IS_FEATURE_FINAL

      public static final String TYPE_IS_FEATURE_FINAL
      Can't add feature to type "{0}" since it is feature final.
      See Also:
    • DESERIALIZATION_ERROR

      public static final String DESERIALIZATION_ERROR
      Error deserializing type system.
      See Also:
    • FLUSH_DISABLED

      public static final String FLUSH_DISABLED
      Can't flush CAS, flushing is disabled.
      See Also:
    • JCAS_ERROR

      public static final String JCAS_ERROR
      {0}
      See Also:
    • DUPLICATE_FEATURE

      public static final String DUPLICATE_FEATURE
      Trying to define feature "{0}" on type "{1}" with range "{2}", but feature has already been defined on (super)type "{3}" with range "{4}".
      See Also:
    • DUPLICATE_TYPE

      public static final String DUPLICATE_TYPE
      Trying to define type "{0}", but this type has already been defined as "{1}".
      See Also:
    • MISSING_ARRAY_TYPE_FOR_COMPONENT

      public static final String MISSING_ARRAY_TYPE_FOR_COMPONENT
      Tried to obtain a UIMA Array type for component "{0}", but no such array type is defined.
      See Also:
    • STRING_SUBTYPE_REDEFINE_NAME_CONFLICT

      public static final String STRING_SUBTYPE_REDEFINE_NAME_CONFLICT
      Can't define a Subtype of String "{0}" with the same name as an existing non String Subtype "{1}".
      See Also:
    • STRING_SUBTYPE_CONFLICTING_ALLOWED_VALUES

      public static final String STRING_SUBTYPE_CONFLICTING_ALLOWED_VALUES
      Can't define a Subtype of String "{0}" with allowed Values "{1}", has the same name as an existing String Subtype with different allowed values "{2}".
      See Also:
    • INDEX_DUPLICATES_NOT_SUPPORTED

      public static final String INDEX_DUPLICATES_NOT_SUPPORTED
      uima.allow_duplicate_add_to_indexes is not supported in UIMA Version 3 and later
      See Also:
    • TOO_MANY_TYPES

      public static final String TOO_MANY_TYPES
      Total number of UIMA types, {0}, exceeds the maximum of 32767.
      See Also:
  • Constructor Details

    • CASAdminException

      public CASAdminException(String aResourceBundleName, Throwable aCause, String aMessageKey, Object... aArguments)
    • CASAdminException

      public CASAdminException(String aMessageKey, Object... aArguments)
    • CASAdminException

      public CASAdminException(Throwable aCause, String aMessageKey, Object... aArguments)
  • Method Details