convex.core.exceptions.FastRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-core Show documentation
Show all versions of convex-core Show documentation
Convex core libraries and common utilities
The newest version!
package convex.core.exceptions;
@SuppressWarnings("serial")
public class FastRuntimeException extends RuntimeException {
public FastRuntimeException(String message) {
super(message);
}
// Don't fill in a stack trace for fast exceptions. We are going to catch and ignore it anyway.....
@Override
public Throwable fillInStackTrace() {
return this;
}
}