ingo@0: /* ingo@0: * Copyright (c) 2010 by Intevation GmbH ingo@0: * ingo@0: * This program is free software under the LGPL (>=v2.1) ingo@0: * Read the file LGPL.txt coming with the software for details ingo@0: * or visit http://www.gnu.org/licenses/ if it does not exist. ingo@0: */ ingo@0: package de.intevation.artifacts.httpclient.exceptions; ingo@0: ingo@0: import java.io.IOException; ingo@0: ingo@0: /** ingo@0: * @author Ingo Weinzierl ingo@0: */ ingo@0: public class ConnectionException extends IOException { ingo@0: ingo@0: public ConnectionException(String msg) { ingo@0: super(msg); ingo@0: } ingo@3: ingo@3: public ConnectionException(String msg, Throwable throwable) { ingo@3: super(msg, throwable); ingo@3: } ingo@0: } ingo@0: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: