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

com.github.vindell.jwt.exception.NotObtainedJwtException Maven / Gradle / Ivy

There is a newer version: 1.0.3.RELEASE
Show newest version
package com.github.vindell.jwt.exception;

@SuppressWarnings("serial")
public class NotObtainedJwtException extends JwtException {
	
	public NotObtainedJwtException() {
		super();
	}

	public NotObtainedJwtException(String message, Throwable cause) {
		super(message, cause);
	}

	public NotObtainedJwtException(String message) {
		super(message);
	}

	public NotObtainedJwtException(Throwable cause) {
		super(cause);
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy