![JAR search and dependency download from the Maven repository](/logo.png)
com.lambdazen.bitsy.BitsyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bitsy Show documentation
Show all versions of bitsy Show documentation
Bitsy v3 is a small, fast, embeddable, durable in-memory graph database that is compatible with Tinkerpop3
package com.lambdazen.bitsy;
public class BitsyException extends RuntimeException {
private static final long serialVersionUID = -5310572247323732287L;
BitsyErrorCodes code;
public BitsyException(BitsyErrorCodes code) {
super(code.toString());
this.code = code;
}
public BitsyException(BitsyErrorCodes code, String s) {
super(code.toString() + ". " + s);
this.code = code;
}
public BitsyException(BitsyErrorCodes code, String s, Throwable t) {
super(code.toString() + ". " + s, t);
this.code = code;
}
public BitsyErrorCodes getErrorCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy