org.n52.proxy.connector.utils.ProxyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proxy-dao Show documentation
Show all versions of proxy-dao Show documentation
REST SPI Implementation for SOS Proxy.
package org.n52.proxy.connector.utils;
import org.n52.janmayen.exception.LocationHintException;
/**
* @author Jan Schulte
*/
public class ProxyException extends LocationHintException {
private static final long serialVersionUID = -8654668015391742318L;
public ProxyException(String message, Object... args) {
super(message, args);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy