
com.joyent.http.signature.ThreadLocalClearException Maven / Gradle / Ivy
package com.joyent.http.signature;
/**
* Exception thrown when we have a problem clearing thread local variables.
*
* @author Elijah Zupancic
*/
public class ThreadLocalClearException extends RuntimeException {
/**
* Constructs a new runtime exception with the specified cause and a
* detail message of (cause==null ? null : cause.toString())
* (which typically contains the class and detail message of
* cause). This constructor is useful for runtime exceptions
* that are little more than wrappers for other throwables.
*
* @param cause the cause (which is saved for later retrieval by the
* {@link #getCause()} method). (A null value is
* permitted, and indicates that the cause is nonexistent or
* unknown.)
*/
public ThreadLocalClearException(final Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy