net.logstash.logback.encoder.com.lmax.disruptor.TimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logstash-logback-encoder Show documentation
Show all versions of logstash-logback-encoder Show documentation
Provides logback encoders, layouts, and appenders to log in JSON and other formats supported by Jackson
The newest version!
package net.logstash.logback.encoder.com.lmax.disruptor;
@SuppressWarnings("serial")
public final class TimeoutException extends Exception
{
public static final TimeoutException INSTANCE = new TimeoutException();
private TimeoutException()
{
// Singleton
}
@Override
public synchronized Throwable fillInStackTrace()
{
return this;
}
}