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

gov.nasa.pds.api.registry.model.exceptions.BadRequestException Maven / Gradle / Ivy

There is a newer version: 4.5.6
Show newest version
package gov.nasa.pds.api.registry.model.exceptions;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.Serial;

public class BadRequestException extends RegistryApiException {
    private static final Logger log = LoggerFactory.getLogger(BadRequestException.class);
    @Serial
    private static final long serialVersionUID = 2026697251322082840L;

    public BadRequestException(String msg) {
        super("BadRequestException: " + msg);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy