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

gov.nasa.pds.api.registry.exceptions.LidVidMismatchException Maven / Gradle / Ivy

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

public class LidVidMismatchException extends Exception {
  /**
   * 
   */
  private static final long serialVersionUID = -4675409702552965562L;

  public LidVidMismatchException(String lidvid, String expected, String found) {
    super("The lidvid " + lidvid + " was of type " + found + " not of type " + expected);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy