
com.almworks.jira.structure.api2g.v2.MissingRowException 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.api2g.v2;
public class MissingRowException extends RuntimeException {
private final long myRowId;
public MissingRowException(long rowId) {
super("row " + rowId + " is not found");
myRowId = rowId;
}
public long getRowId() {
return myRowId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy