com.castle.time.exceptions.TimeoutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of castle Show documentation
Show all versions of castle Show documentation
A generic utility library
package com.castle.time.exceptions;
public class TimeoutException extends Exception {
public TimeoutException(String message, Throwable cause) {
super(message, cause);
}
public TimeoutException(Throwable cause) {
super(cause);
}
public TimeoutException(String message) {
super(message);
}
public TimeoutException() {
super();
}
}