org.zodiac.sdk.simplenetty.exception.CanceledException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zodiac-sdk-nio Show documentation
Show all versions of zodiac-sdk-nio Show documentation
Zodiac SDK NIO2(New Non-Blocking IO)
package org.zodiac.sdk.simplenetty.exception;
public class CanceledException extends RuntimeException {
private static final long serialVersionUID = -5563784918627009351L;
public CanceledException() {
super();
}
public CanceledException(String message, Throwable cause) {
super(message, cause);
}
public CanceledException(String message) {
super(message);
}
public CanceledException(Throwable cause) {
super(cause);
}
}