br.com.codecode.dryutil.factory.exception.ConnectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dry-util Show documentation
Show all versions of dry-util Show documentation
Dont Repeat Yourself! - Utilities
The newest version!
package br.com.codecode.dryutil.factory.exception;
public class ConnectionException extends Exception {
private static final long serialVersionUID = -6097217251751227573L;
public ConnectionException(){}
public ConnectionException(String msg) {
super(msg);
}
public ConnectionException(String message, Throwable cause) {
super(message, cause);
}
public ConnectionException(Throwable cause) {
super(cause);
}
}