Class ApiException

java.lang.Object
java.lang.Throwable
java.lang.Exception
de.xima.fc.api.rest.pub.client.form.ApiException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
UnexpectedStatusCodeException, UnsuccessfulStatusCodeException

@Generated("de.xima.openapi.codegen.java_jaxrs.XimaJavaJaxrsGenerator") public class ApiException extends Exception
Exception thrown by various REST API methods. Encapsulates other exceptions.
See Also:
  • Constructor Details

    • ApiException

      public ApiException()
      Creates a new API exception without details or a cause.
    • ApiException

      public ApiException(Throwable cause)
      Creates a new API exception with a cause.
      Parameters:
      cause - The underlying cause of the exception.
    • ApiException

      public ApiException(String message)
      Creates a new API exception with a message.
      Parameters:
      message - Details message that describes the error.
    • ApiException

      public ApiException(String message, Throwable cause)
      Creates a new API exception with a message and a cause.
      Parameters:
      message - Details message that describes the error.
      cause - The underlying cause of the exception.