edu.ksu.lti.launch.exception.CookieUnavailableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lti-launch Show documentation
Show all versions of lti-launch Show documentation
Java framework for authenticating LTI launch requests from the Canvas LMS
The newest version!
package edu.ksu.lti.launch.exception;
public class CookieUnavailableException extends Exception {
private static final long serialVersionUID = 1L;
public CookieUnavailableException() {
// Nothing to do here.
}
public CookieUnavailableException(String message) {
super(message);
}
public CookieUnavailableException(String message, Throwable cause) {
super(message, cause);
}
}