All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.almworks.jira.structure.api.column.StructureColumnException Maven / Gradle / Ivy

There is a newer version: 17.25.3
Show newest version
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