Class IXExceptionC

java.lang.Object
de.elo.ix.client.IXExceptionC
All Implemented Interfaces:
Serializable

public class IXExceptionC extends Object implements Serializable
This class contains constant definitions for Indexserver error numbers used in Indexserver exceptions.

Copyright: Copyright (c) 2004

Organisation: ELO Digital Office GmbH

See Also:
  • Field Details

    • SERVER_ERROR

      public static final int SERVER_ERROR
      Problem in the server configuration.
      See Also:
    • UNSUPPORTED_PROTOCOL_VERSION

      public static final int UNSUPPORTED_PROTOCOL_VERSION
      Unsupported protocol version. This error is thrown, if the protocol version cannot be negotiated. A reason for this can be different major release versions of client and server.
      Since:
      9.00.014.011
      See Also:
    • INVALID_LICENSE

      public static final int INVALID_LICENSE
      License key is invalid.
      Since:
      12.00.000.048
      See Also:
    • INVALID_PARAM

      public static final int INVALID_PARAM
      Invalid parameter was given.
      See Also:
    • INVALID_SESSION

      public static final int INVALID_SESSION
      Session is not (or no longer) valid.
      See Also:
    • TEMP_PROBLEM_OLD

      public static final int TEMP_PROBLEM_OLD
      Temporarily problem, a later try should succeed. The value of TEMP_PROBLEM must be changed in IX 8.00.054, because the current client libraries recognize it as an exception where relogin is required. This could lead to the effect described in TTS001661.
      Since:
      9.00.016.021
      See Also:
    • TEMP_PROBLEM

      public static final int TEMP_PROBLEM
      Temporarily problem, a later try should succeed.
      See Also:
    • INVALID_CRYPT_KEY

      public static final int INVALID_CRYPT_KEY
      Encryption key must be set before documents can be encrypted.
      See Also:
    • SYNTAX_ERROR

      public static final int SYNTAX_ERROR
      Syntax error e.g. in search request.
      See Also:
    • PASSWORD_DENIED

      public static final int PASSWORD_DENIED
      The given password violates the password rules. The passord rules are stored in the user profile value UserProfileC.KEY_PASSWORD_RULES.
      Since:
      8.00.012.004
      See Also:
    • ALREADY_EXISTS

      public static final int ALREADY_EXISTS
      Specified object to be created already exists.
      See Also:
    • LOCKED

      public static final int LOCKED
      Specified data is locked.
      See Also:
    • NOT_FOUND

      public static final int NOT_FOUND
      Specified data could not be found.
      See Also:
    • ACCESS_DENIED

      public static final int ACCESS_DENIED
      Access to the specified object was denied, there are rights missing.
      See Also:
    • NOT_EMPTY

      public static final int NOT_EMPTY
      Specified data could not be found.
      See Also:
    • TIMEOUT

      public static final int TIMEOUT
      Request timed out. EIX-3140
      Since:
      21.03.000.016
      See Also:
    • UNABLE_TO_TAKE_OVER_ASPECT_OBJECTS

      public static final int UNABLE_TO_TAKE_OVER_ASPECT_OBJECTS
      Can not take over aspect objects.
      Since:
      21.02.000.014
      See Also:
    • FAILED_TO_DELETE_PACKAGE

      @Deprecated public static final int FAILED_TO_DELETE_PACKAGE
      Deprecated.
      EIX-2040: Specified package can not be deleted.
      Since:
      21.01.000.001
      See Also:
    • FAILED_TO_DELETE_PACKAGE_LEVEL

      public static final int FAILED_TO_DELETE_PACKAGE_LEVEL
      EIX-2647: Specified package level can not be deleted.
      Since:
      21.02.000.016
      See Also:
    • SCRIPT_ERROR

      public static final int SCRIPT_ERROR
      An error thrown in a script file is passed to the client application with this error code. E.g. [ELOIX:6000] "Message text thrown in script".
      See Also:
    • NOT_IX

      public static final int NOT_IX
      Not a ELO IX Exception
      See Also:
    • INTERNAL

      public static final int INTERNAL
      Internal error.
      See Also:
    • UNSUPPORTED_FUNCTION

      public static final int UNSUPPORTED_FUNCTION
      Function is not currently supported.
      See Also:
    • PROHIBITED_OPERATION

      public static final int PROHIBITED_OPERATION
      The called function cannot be executed on this object
      Since:
      12.00.000.016
      See Also:
    • AUTHENTICATION_FAILED

      public static final int AUTHENTICATION_FAILED
      User authentication failed
      Since:
      21.00.000.005
      See Also:
  • Constructor Details

    • IXExceptionC

      public IXExceptionC()
  • Method Details

    • getAUTHENTICATION_FAILED

      public int getAUTHENTICATION_FAILED()
    • setAUTHENTICATION_FAILED

      public void setAUTHENTICATION_FAILED(int AUTHENTICATION_FAILED)
    • getPROHIBITED_OPERATION

      public int getPROHIBITED_OPERATION()
    • setPROHIBITED_OPERATION

      public void setPROHIBITED_OPERATION(int PROHIBITED_OPERATION)
    • getACCESS_DENIED

      public int getACCESS_DENIED()
    • setACCESS_DENIED

      public void setACCESS_DENIED(int ACCESS_DENIED)
    • getALREADY_EXISTS

      public int getALREADY_EXISTS()
    • setALREADY_EXISTS

      public void setALREADY_EXISTS(int ALREADY_EXISTS)
    • getINTERNAL

      public int getINTERNAL()
    • setINTERNAL

      public void setINTERNAL(int INTERNAL)
    • getINVALID_PARAM

      public int getINVALID_PARAM()
    • setINVALID_PARAM

      public void setINVALID_PARAM(int INVALID_PARAM)
    • getINVALID_SESSION

      public int getINVALID_SESSION()
    • setINVALID_SESSION

      public void setINVALID_SESSION(int INVALID_SESSION)
    • getINVALID_CRYPT_KEY

      public int getINVALID_CRYPT_KEY()
    • setINVALID_CRYPT_KEY

      public void setINVALID_CRYPT_KEY(int INVALID_CRYPT_KEY)
    • getLOCKED

      public int getLOCKED()
    • setLOCKED

      public void setLOCKED(int LOCKED)
    • getNOT_FOUND

      public int getNOT_FOUND()
    • setNOT_FOUND

      public void setNOT_FOUND(int NOT_FOUND)
    • getNOT_EMPTY

      public int getNOT_EMPTY()
    • setNOT_EMPTY

      public void setNOT_EMPTY(int NOT_EMPTY)
    • getNOT_IX

      public int getNOT_IX()
    • setNOT_IX

      public void setNOT_IX(int NOT_IX)
    • getSERVER_ERROR

      public int getSERVER_ERROR()
    • setSERVER_ERROR

      public void setSERVER_ERROR(int SERVER_ERROR)
    • getTEMP_PROBLEM

      public int getTEMP_PROBLEM()
    • setTEMP_PROBLEM

      public void setTEMP_PROBLEM(int TEMP_PROBLEM)
    • getUNSUPPORTED_FUNCTION

      public int getUNSUPPORTED_FUNCTION()
    • setUNSUPPORTED_FUNCTION

      public void setUNSUPPORTED_FUNCTION(int UNSUPPORTED_FUNCTION)
    • getSYNTAX_ERROR

      public int getSYNTAX_ERROR()
    • setSYNTAX_ERROR

      public void setSYNTAX_ERROR(int sYNTAXERROR)
    • getSCRIPT_ERROR

      public int getSCRIPT_ERROR()
    • setSCRIPT_ERROR

      public void setSCRIPT_ERROR(int v)
    • getPASSWORD_DENIED

      public int getPASSWORD_DENIED()
    • setPASSWORD_DENIED

      public void setPASSWORD_DENIED(int v)