Class BPMAttributeException

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
Direct Known Subclasses:
BPMUnsupportedAttributeException

public class BPMAttributeException extends BPMIdentityException
BPMAttributeException is a checked exception. This is throwm if an attribute is not in the expected format or is not supprted. See also BPMUnsupportedAttributeException
See Also:
  • Constructor Details

    • BPMAttributeException

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

      public BPMAttributeException(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.
    • BPMAttributeException

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

      public BPMAttributeException(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.
    • BPMAttributeException

      public BPMAttributeException(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.
    • BPMAttributeException

      public BPMAttributeException(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
    • BPMAttributeException

      public BPMAttributeException(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.