com.itranswarp.warpdb.context.MissingContextException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of warpdb Show documentation
Show all versions of warpdb Show documentation
Simple, DSL-driven RDBMS interface for Java
package com.itranswarp.warpdb.context;
public class MissingContextException extends RuntimeException {
public MissingContextException() {
super();
}
public MissingContextException(String message) {
super(message);
}
public MissingContextException(Throwable cause) {
super(cause);
}
public MissingContextException(String message, Throwable cause) {
super(message, cause);
}
}