com.slicklog.remotelogger.exceptions.CannotEnstablishConnectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remotelogger Show documentation
Show all versions of remotelogger Show documentation
SlickLog.com remote logger.
Allows to push your logs to the the SlickLog.com platform.
The newest version!
/*
* Copyright (c) 2013. SlickLog.
*/
package com.slicklog.remotelogger.exceptions;
/**
*
* @author Torindo Nesci
*/
public class CannotEnstablishConnectionException extends RuntimeException {
public CannotEnstablishConnectionException() {
}
public CannotEnstablishConnectionException(String msg) {
super(msg);
}
public CannotEnstablishConnectionException(Throwable cause) {
super(cause);
}
}