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

org.yamcs.client.UnauthorizedException Maven / Gradle / Ivy

The newest version!
package org.yamcs.client;

@SuppressWarnings("serial")
public class UnauthorizedException extends ClientException {

    public UnauthorizedException() {
        super("Unauthorized");
    }

    public UnauthorizedException(String message) {
        super("Unauthorized: " + message);
    }

    public UnauthorizedException(ExceptionData restData) {
        super(restData);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy