Class BPMUnsupportedOperationException

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 BPMUnsupportedOperationException extends BPMIdentityException
BPMUnsupportedOperationException is a check exception. It is thrown when as unsupported operation is performed.
See Also:
  • Constructor Details

    • BPMUnsupportedOperationException

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

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

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

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

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

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