All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.camunda.common.exception.SdkException Maven / Gradle / Ivy

There is a newer version: 8.5.10
Show newest version
package io.camunda.common.exception;

public class SdkException extends RuntimeException {

  private static final long serialVersionUID = 1L;

  public SdkException(final Throwable cause) {
    super(cause);
  }

  public SdkException(final String message) {
    super(message);
  }

  public SdkException(final String message, final Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy