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

org.sakaiproject.lti.api.LTIException Maven / Gradle / Ivy

There is a newer version: 23.3
Show newest version
package org.sakaiproject.lti.api;

/**
 * Created by IntelliJ IDEA.
 * User: jbush
 * Date: 2/15/12
 * Time: 5:08 PM
 * To change this template use File | Settings | File Templates.
 */
public class LTIException extends Exception {
    private String errorKey;

    public LTIException(String errorKey, String errorMessage) {
        super(errorMessage);
        this.errorKey = errorKey;
    }


    public LTIException(String errorKey, String errorMessage, Exception exception) {
        super(errorMessage, exception);
        this.errorKey = errorKey;
    }

    public String getErrorKey() {
        return errorKey;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy