/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2003-2008, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.data.vpf.exc; /** * Class VPFHeaderFormatException.java is responsible for * * <p> * Created: Tue Jan 21 15:12:10 2003 * </p> * * @author <a href="mailto:kobit@users.sourceforge.net">Artur Hefczyc</a> * * * @source $URL$ * @version 1.0.0 */ public class VPFHeaderFormatException extends VPFDataException { /** * Creates a new VPFHeaderFormatException object. */ public VPFHeaderFormatException() { super(); } /** * Creates a new VPFHeaderFormatException object. * * @param message DOCUMENT ME! */ public VPFHeaderFormatException(String message) { super(message); } } // VPFHeaderFormatException