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

com.almworks.jira.structure.api.StructureRuntimeException Maven / Gradle / Ivy

There is a newer version: 17.25.3
Show newest version
package com.almworks.jira.structure.api;

/**
 * StructureRuntimeException, or its subclass, is thrown when a Structure service experiences an unexpected error, which
 * is not part of the service's contract.
 */
public class StructureRuntimeException extends RuntimeException {
  public StructureRuntimeException(String message) {
    super(message);
  }

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

  public StructureRuntimeException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy