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

org.yamcs.security.InvalidAuthenticationToken Maven / Gradle / Ivy

There is a newer version: 5.10.1
Show newest version
package org.yamcs.security;

/**
 * Thrown when an AuthenticationToken is not or no longer valid.
 * 
 * @author nm
 *
 */
@SuppressWarnings("serial")
public class InvalidAuthenticationToken extends Exception {

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy