Class SchemaOperationException

    • Field Detail

      • CODE_GENERIC

        public static final int CODE_GENERIC
        Code: generic error.
        See Also:
        Constant Field Values
      • CODE_CACHE_NOT_FOUND

        public static final int CODE_CACHE_NOT_FOUND
        Code: cache not found.
        See Also:
        Constant Field Values
      • CODE_TABLE_NOT_FOUND

        public static final int CODE_TABLE_NOT_FOUND
        Code: table not found.
        See Also:
        Constant Field Values
      • CODE_TABLE_EXISTS

        public static final int CODE_TABLE_EXISTS
        Code: table already exists.
        See Also:
        Constant Field Values
      • CODE_COLUMN_NOT_FOUND

        public static final int CODE_COLUMN_NOT_FOUND
        Code: column not found.
        See Also:
        Constant Field Values
      • CODE_COLUMN_EXISTS

        public static final int CODE_COLUMN_EXISTS
        Code: column already exists.
        See Also:
        Constant Field Values
      • CODE_INDEX_NOT_FOUND

        public static final int CODE_INDEX_NOT_FOUND
        Code: index not found.
        See Also:
        Constant Field Values
      • CODE_INDEX_EXISTS

        public static final int CODE_INDEX_EXISTS
        Code: index already exists.
        See Also:
        Constant Field Values
      • CODE_CACHE_ALREADY_INDEXED

        public static final int CODE_CACHE_ALREADY_INDEXED
        Code: cache already indexed.
        See Also:
        Constant Field Values
      • CODE_VIEW_NOT_FOUND

        public static final int CODE_VIEW_NOT_FOUND
        Code: view not found.
        See Also:
        Constant Field Values
      • CODE_VIEW_EXISTS

        public static final int CODE_VIEW_EXISTS
        Code: view already exists.
        See Also:
        Constant Field Values
      • CODE_SCHEMA_NOT_FOUND

        public static final int CODE_SCHEMA_NOT_FOUND
        Code: schema not found.
        See Also:
        Constant Field Values
    • Constructor Detail

      • SchemaOperationException

        public SchemaOperationException​(int code,
                                        String objName)
        Constructor for specific error type.
        Parameters:
        code - Code.
        objName - Object name.
      • SchemaOperationException

        public SchemaOperationException​(String msg)
        Constructor for generic error.
        Parameters:
        msg - Message.
      • SchemaOperationException

        public SchemaOperationException​(String msg,
                                        Throwable cause)
        Constructor for generic error.
        Parameters:
        msg - Message.
        cause - Cause.