Class BPMAuthenticationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.tip.pc.infra.exception.collaxa.ServerException
oracle.tip.pc.infra.exception.collaxa.CubeException
All Implemented Interfaces:
Serializable

public class BPMAuthenticationException extends BPMIdentityException
BPMAuthenticationException is a checked exception. It is thrown when a given user cannot authenticated by system.
See Also:
  • Constructor Details

    • BPMAuthenticationException

      public BPMAuthenticationException(int err)
      Constructor
      Parameters:
      err - An error code pointing to the error message in the resource bundle.
    • BPMAuthenticationException

      public BPMAuthenticationException(int err, Throwable t)
      Constructor A generic constructor that can be used wrap around generic Exceptions.
      Parameters:
      err - An error code pointing to the error message in the resource bundle.
      t - A Throwable object. This is usually the internal exception that was caught.
    • BPMAuthenticationException

      public BPMAuthenticationException(PCException pce)
      Constructor Can be used wrap around PCException.
      Parameters:
      pce - A PCException exception. This is usually the internal exception that was caught.
    • BPMAuthenticationException

      public BPMAuthenticationException(oracle.tip.pc.infra.exception.PCRuntimeException pcre)
      Constructor Can be used wrap around PCRuntimeException.
      Parameters:
      pcre - a PCRuntimeException exception. This is usually the internal exception that was caught.
    • BPMAuthenticationException

      public BPMAuthenticationException(Throwable t, int component)
      Constructor
      Parameters:
      t - A Throwable object. This is usually the internal exception that was caught.
      component - A pointer to component where the exception condition occured.
    • BPMAuthenticationException

      public BPMAuthenticationException(int err, Object[] objs)
      Constructor
      Parameters:
      err - An error code pointing to the error message in the resource bundle.
      objs - An array of Objects used for message parameters
    • BPMAuthenticationException

      public BPMAuthenticationException(int err, Object[] objs, Throwable t)
      Constructor
      Parameters:
      err - An error code pointing to the error message in the resource bundle.
      objs - An array of Objects used for message parameters
      t - A Throwable object. This is usually the internal exception that was caught.