
org.javastro.ivoa.jpa.exceptions.NonexistentEntityException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaxbjpa-utils Show documentation
Show all versions of jaxbjpa-utils Show documentation
generic utilities to make using JAXB and JPA easier
The newest version!
package org.javastro.ivoa.jpa.exceptions;
public class NonexistentEntityException extends RuntimeException {
/** serialVersionUID.
*/
private static final long serialVersionUID = 1L;
public NonexistentEntityException(String message, Throwable cause) {
super(message, cause);
}
public NonexistentEntityException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy