de.mklinger.qetcher.client.QetcherClientException Maven / Gradle / Ivy
package de.mklinger.qetcher.client;
/**
* @author Marc Klinger - mklinger[at]mklinger[dot]de
*/
public class QetcherClientException extends RuntimeException {
private static final long serialVersionUID = 1L;
public QetcherClientException(final String msg) {
super(msg);
}
public QetcherClientException(final String msg, final Throwable cause) {
super(msg, cause);
}
}