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

org.redmine.ta.RedmineInternalError Maven / Gradle / Ivy

Go to download

Free open-source Java API for Redmine and Chiliproject bug/task management systems.

The newest version!
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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy