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

net.openhft.chronicle.core.StackTrace Maven / Gradle / Ivy

package net.openhft.chronicle.core;

/**
 * Throwable created purely for the purposes of reporting a stack trace.
 * 

* This is not an Error or an Exception and is not expected to be thrown or caught. *

* https://github.com/OpenHFT/Chronicle-Core/issues/75 */ public class StackTrace extends Throwable { public StackTrace() { this(null); } public StackTrace(String message) { this(message, null); } public StackTrace(String message, Throwable cause) { super(message, cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy