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: /**
ingo@0:  * @author <a href="mailto:ingo.weinzierl@intevation.de">Ingo Weinzierl</a>
ingo@0:  */
ingo@0: public class NoSuchOptionException extends Exception {
ingo@0: 
ingo@0:     public NoSuchOptionException(String msg) {
ingo@0:         super(msg);
ingo@0:     }
ingo@0: }
ingo@0: // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8: