org.redmine.ta.RedmineInternalError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redmine-java-api Show documentation
Show all versions of redmine-java-api Show documentation
Free open-source Java API for Redmine and Chiliproject bug/task management systems.
package org.redmine.ta;
/**
* Internal redmine error. Should never happen.
*
* @author maxkar
*
*/
public class RedmineInternalError extends Error {
private static final long serialVersionUID = 1L;
public RedmineInternalError() {
}
public RedmineInternalError(String message, Throwable cause) {
super(message, cause);
}
public RedmineInternalError(String message) {
super(message);
}
public RedmineInternalError(Throwable cause) {
super(cause);
}
}