
com.almworks.jira.structure.api.StructureRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
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