net.alantea.socks.base.exceptions.UnconnectedSocketError Maven / Gradle / Ivy
The newest version!
package net.alantea.socks.base.exceptions;
/**
* The Class ClosedSocketError.
*/
public class UnconnectedSocketError extends SocketError
{
/** The Constant serialVersionUID. */
private static final long serialVersionUID = -1855756550647649018L;
/**
* Instantiates a new closed socket error.
*
* @param arg0 the arg 0
*/
public UnconnectedSocketError(String arg0)
{
super(arg0);
}
/**
* Instantiates a new closed socket error.
*
* @param arg0 the arg 0
* @param arg1 the arg 1
*/
public UnconnectedSocketError(String arg0, Throwable arg1) {
super(arg0, arg1);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy