com.almworks.jira.structure.api.template.StructureTemplateException 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
The newest version!
package com.almworks.jira.structure.api.template;
/**
* @author alexeypegov
*/
public class StructureTemplateException extends Exception {
public StructureTemplateException(String message) {
super(message);
}
public StructureTemplateException(String message, Throwable cause) {
super(message, cause);
}
public StructureTemplateException(Throwable cause) {
super(cause);
}
}