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

io.github.icodegarden.commons.lang.exception.remote.ServerRemoteException Maven / Gradle / Ivy

package io.github.icodegarden.commons.lang.exception.remote;

/**
 * @author Fangfang.Xu
 */
public abstract class ServerRemoteException extends RemoteException {

	private static final long serialVersionUID = 1L;

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

	public ServerRemoteException(String message) {
		super(message);
	}

	public ServerRemoteException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy