ai.grakn.redismock.expecptions.InternalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redis-mock Show documentation
Show all versions of redis-mock Show documentation
In memory Redis mock for testing
package ai.grakn.redismock.expecptions;
/**
* Created by Xiaolu on 2015/4/22.
*/
public class InternalException extends RuntimeException {
public InternalException() {
super();
}
public InternalException(String message) {
super(message);
}
}