All Downloads are FREE. Search and download functionalities are using the official Maven repository.

convex.core.exceptions.FastRuntimeException Maven / Gradle / Ivy

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;
	}      
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy