Class ConfigOpFailedException

All Implemented Interfaces:
SWIG_DSAPIConstants, Serializable

public class ConfigOpFailedException extends DSAPIException
A class representing an exception which can be thrown as a result of a local requested operation failing. If it is due to another DSAPIException, the original exception can be retrieved.
Since:
15.0
Author:
mv
See Also:
  • Constructor Details

    • ConfigOpFailedException

      public ConfigOpFailedException(String message, int nativeErrorCode)
      Constructs a new ConfigOpFailedException with the specified message and error code
      Parameters:
      message - gives extra detail about the specific exception.
      nativeErrorCode - a value as returned from underlying native code which may be useful in determining the cause of the problem.
    • ConfigOpFailedException

      public ConfigOpFailedException(String message)
      Constructs a new ConfigOpFailedException with the specified message.
      Parameters:
      message - gives extra detail about the specific exception.
    • ConfigOpFailedException

      public ConfigOpFailedException(String message, Throwable cause)
      Constructs a new ConfigOpFailedException with the specified message and cause.
      Parameters:
      message - gives extra detail about the specific exception.
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
  • Method Details