com.almworks.jira.structure.api.lifecycle.StructureStoppedException 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.lifecycle;
import com.atlassian.annotations.PublicApi;
/**
* @author Igor Sereda
*/
@PublicApi
public class StructureStoppedException extends IllegalStateException {
public StructureStoppedException(Object who) {
super("Structure(" + who + ") is not ready yet or it's been stopped. Structure Restore may be in progress -- please wait until the plugin is re-enabled.");
}
}