package com.breakersoft.plow.exceptions;
public class RndClientConnectionError extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 6683867463412207148L;
public RndClientConnectionError() {
// TODO Auto-generated constructor stub
}
public RndClientConnectionError(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public RndClientConnectionError(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public RndClientConnectionError(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
}