
nl.tno.bim.nmd.exception.NmdIdNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bimnmdservice Show documentation
Show all versions of bimnmdservice Show documentation
provides a REST api for retrieving nmd data from various data sources
The newest version!
package nl.tno.bim.nmd.exception;
@SuppressWarnings("serial")
public class NmdIdNotFoundException extends Exception {
public NmdIdNotFoundException() {
super();
}
public NmdIdNotFoundException(String message) {
super(message);
}
public NmdIdNotFoundException(String message, Throwable cause) {
super(message, cause);
}
public NmdIdNotFoundException(Throwable cause) {
super(cause);
}
protected NmdIdNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy