org.yamcs.security.InvalidAuthenticationToken Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yamcs-api Show documentation
Show all versions of yamcs-api Show documentation
Used by external clients to communicate with Yamcs
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);
}
}