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

com.lmax.disruptor.TimeoutException Maven / Gradle / Ivy

There is a newer version: 1.50.0
Show newest version
package 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy