com.almworks.jira.structure.api.job.StructureJobException 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.job;
/**
* This exception is thrown by the {@link StructureJobManager} when there's a problem
* with scheduling a job.
*
* @author Igor Sereda
*/
public class StructureJobException extends Exception {
public StructureJobException() {
}
public StructureJobException(String message) {
super(message);
}
public StructureJobException(String message, Throwable cause) {
super(message, cause);
}
public StructureJobException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy