
org.yamcs.sle.AuthenticationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsle Show documentation
Show all versions of jsle Show documentation
Java implementation for the SLE (Space Link Extension) protocol.
package org.yamcs.sle;
public class AuthenticationException extends RuntimeException {
private static final long serialVersionUID = 1L;
public AuthenticationException(String msg) {
super(msg);
}
public AuthenticationException(String msg, Exception e) {
super(msg, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy