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

io.soffa.foundation.errors.TimeoutException Maven / Gradle / Ivy

The newest version!
package io.soffa.foundation.errors;

public class TimeoutException extends TechnicalException {

    private static final long serialVersionUID = 1L;

    public TimeoutException(Throwable cause, String messsage, Object... args) {
        super(cause, messsage, args);
    }

    public TimeoutException(String messsage, Object... args) {
        super(messsage, args);
    }

    public TimeoutException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy