com.almworks.jira.structure.api.sync.StructureSynchronizerException 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.sync;
import com.atlassian.annotations.PublicApi;
/**
* This exception is thrown by the {@link StructureSyncManager} when it cannot perform the requested operation.
*
* @author Igor Sereda
*/
@PublicApi
public class StructureSynchronizerException extends Exception {
public StructureSynchronizerException(String message) {
super(message);
}
public StructureSynchronizerException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy