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

gov.nasa.pds.api.registry.model.exceptions.NotFoundException 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;

public class NotFoundException extends RegistryApiException {

  private static final long serialVersionUID = -6704894264788325051L;
  private static final Logger log = LoggerFactory.getLogger(NotFoundException.class);

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy