org.resthub.common.exception.NotImplementedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resthub-common Show documentation
Show all versions of resthub-common Show documentation
RESThub core include Embeded datasource, Generic Repository and Generic CRUD services
package org.resthub.common.exception;
/**
* Exception used to signify that an element (class, webservice, method) does not exists
*/
public class NotImplementedException extends RuntimeException {
public NotImplementedException() {
super();
}
public NotImplementedException(final String message, final Throwable cause) {
super(message, cause);
}
public NotImplementedException(final String message) {
super(message);
}
public NotImplementedException(final Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy