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

gov.nasa.pds.api.registry.model.exceptions.UnhandledException 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 UnhandledException extends RegistryApiException {

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


  public UnhandledException(String msg) {
    super("Unhandled Exception:" + msg);
  }

  public UnhandledException(Exception e) {
    super("Unhandled Exception: " + e.getMessage());

  }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy