
restql.core.exception.RestQLException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restql-core Show documentation
Show all versions of restql-core Show documentation
Microservice query language for Java
The newest version!
package restql.core.exception;
public class RestQLException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
public RestQLException(){
}
public RestQLException(Throwable t) {
super(t);
}
public RestQLException(String cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy