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

org.yamcs.utils.InvalidRequestException Maven / Gradle / Ivy

There is a newer version: 5.10.9
Show newest version
package org.yamcs.utils;

/**
 * Exception thrown by services when receiving an invalid request usually via the http api, case in which it transformed
 * into HTTP Bad Request
 * 
 */
public class InvalidRequestException extends RuntimeException {
    public InvalidRequestException(String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy