io.github.icodegarden.nutrient.lang.exception.remote.RemoteException Maven / Gradle / Ivy
The newest version!
package io.github.icodegarden.nutrient.lang.exception.remote;
/**
* @author Fangfang.Xu
*/
public abstract class RemoteException extends RuntimeException {
private static final long serialVersionUID = 1L;
public RemoteException(String message, Throwable cause) {
super(message, cause);
}
public RemoteException(String message) {
super(message);
}
public RemoteException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy