Class DfServiceException

All Implemented Interfaces:
IDfException, Serializable
Direct Known Subclasses:
DfAuthenticationException, DfDborNotFoundException, DfDocbrokerException, DfIdentityException, DfIOException, DfPrincipalException, DfServiceInstantiationException, DfServiceNotFoundException

public class DfServiceException extends DfException
This class provides error information. It extends Java Exception and DFC DfException. This class is supported for backward compatability only. Exceptions of this type really have no meaning beyond DfException. A number of exception classes extend this class. Most classes would extend DfException rather than extend this class but they extend this class so that they can pass freely through the session manager and BOF APIs.
Since:
5.1
See Also:
  • Field Details

    • DM_VEL_ERROR

      public static final int DM_VEL_ERROR
      Deprecated.
      The alphanumeric identifiers should be used instead
      See Also:
    • DM_VEL_SERVICE_NOT_FOUND

      public static final int DM_VEL_SERVICE_NOT_FOUND
      Deprecated.
      The alphanumeric identifiers should be used instead
      See Also:
    • DM_VEL_INSTANTIATION_ERROR

      public static final int DM_VEL_INSTANTIATION_ERROR
      Deprecated.
      The alphanumeric identifiers should be used instead
      See Also:
    • DM_VEL_DBOR_IO_ERROR

      public static final int DM_VEL_DBOR_IO_ERROR
      Deprecated.
      The alphanumeric identifiers should be used instead
      See Also:
    • DM_VEL_PRINCIPAL_ERROR

      public static final int DM_VEL_PRINCIPAL_ERROR
      Deprecated.
      The alphanumeric identifiers should be used instead
      See Also:
    • DM_VEL_CANNOT_AUTHENTICATE

      public static final int DM_VEL_CANNOT_AUTHENTICATE
      Deprecated.
      The alphanumeric identifiers should be used instead
      See Also:
    • DM_VEL_IDENTITY_ERROR

      public static final int DM_VEL_IDENTITY_ERROR
      Deprecated.
      The alphanumeric identifiers should be used instead
      See Also:
    • DM_VEL_DBOR_NOT_FOUND

      public static final int DM_VEL_DBOR_NOT_FOUND
      Deprecated.
      The alphanumeric identifiers should be used instead
      See Also:
  • Constructor Details

    • DfServiceException

      public DfServiceException()
    • DfServiceException

      public DfServiceException(Throwable cause)
    • DfServiceException

      public DfServiceException(String message)
    • DfServiceException

      public DfServiceException(String message, Throwable cause)
    • DfServiceException

      public DfServiceException(String message, Object[] arguments)
    • DfServiceException

      public DfServiceException(String message, Object[] arguments, Throwable cause)
    • DfServiceException

      public DfServiceException(com.documentum.fc.common.impl.MessageHelper messageHelper)
    • DfServiceException

      public DfServiceException(com.documentum.fc.common.impl.MessageHelper messageHelper, Throwable cause)
    • DfServiceException

      public DfServiceException(int errorCode, String message)
      Deprecated.
      Alphanumeric identifiers are now used instead of numeric error codes
      Constructs a DfServiceException object. The error message is obtained from the DFC ResourceBundle using a stringified version of the error code.
      Parameters:
      errorCode - the error code associated with this exception
      message - message
    • DfServiceException

      public DfServiceException(Object resource, String errorCode)
      Deprecated.
      Constructs a DfServiceException object with the default DM_VEL_ERROR error code. We must specify a resource bundle to be used to map the error messages.
      Parameters:
      resource - resource bundle name (String) or class which corresponds to the resource bundle name
      errorCode - the error code associated with this exception. Use underscore to separate words.
  • Method Details