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

org.rootservices.jwt.serialization.exception.JwtToJsonException Maven / Gradle / Ivy

The newest version!
package org.rootservices.jwt.serialization.exception;

/**
 * Created by tommackenzie on 12/12/15.
 *
 * Is thrown when a JsonWebToken can not be serialized to JSON
 */
public class JwtToJsonException extends Exception {
    public JwtToJsonException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy