io.bitsensor.lib.entity.DataModelException Maven / Gradle / Ivy
The newest version!
package io.bitsensor.lib.entity;
public class DataModelException extends RuntimeException {
public DataModelException() {
super("Data model is corrupt");
}
public DataModelException(String s) {
super(s);
}
public DataModelException(String s, Throwable throwable) {
super(s, throwable);
}
public DataModelException(Throwable throwable) {
super(throwable);
}
public DataModelException(String s, Throwable throwable, boolean b, boolean b1) {
super(s, throwable, b, b1);
}
}