
com.almworks.jira.structure.api.column.StructureColumnException 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.column;
import com.atlassian.annotations.PublicApi;
/**
* {@code StructureColumnException} is thrown by
* {@link com.almworks.jira.structure.api.column.data.IssueDataProvider IssueDataProvider} or
* {@link com.almworks.jira.structure.api.column.export.ExportRendererProvider ExportRendererProvider} when the
* provider is supposed to serve the request for a particular issue data field or column specification, but it is
* unable to do so for whatever reason, e.g. missing or invalid parameter values, insufficient permissions, or an
* unexpected exception.
*/
@PublicApi
public class StructureColumnException extends Exception {
public StructureColumnException() {}
public StructureColumnException(Throwable cause) {
super(cause);
}
public StructureColumnException(String message) {
super(message);
}
public StructureColumnException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy