edu.ksu.lti.launch.exception.OauthTokenRequiredException 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;
/**
* To be thrown if we do not have an OAuth token for the current user.
*
* Typically the user will be redirected to the OAuth flow to grant
* the application access to their account.
*
*/
public class OauthTokenRequiredException extends RuntimeException {
private static final long serialVersionUID = 1L;
}