001    //$HeadURL: https://svn.wald.intevation.org/svn/deegree/base/branches/2.3_testing/src/org/deegree/io/rtree/RTreeException.java $
002    //----------------------------------------
003    //RTree implementation.
004    //Copyright (C) 2002-2004 Wolfgang Baer - WBaer@gmx.de
005    //
006    //This library is free software; you can redistribute it and/or
007    //modify it under the terms of the GNU Lesser General Public
008    //License as published by the Free Software Foundation; either
009    //version 2.1 of the License, or (at your option) any later version.
010    //
011    //This library is distributed in the hope that it will be useful,
012    //but WITHOUT ANY WARRANTY; without even the implied warranty of
013    //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
014    //Lesser General Public License for more details.
015    //
016    //You should have received a copy of the GNU Lesser General Public
017    //License along with this library; if not, write to the Free Software
018    //Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
019    //----------------------------------------
020    
021    package org.deegree.io.rtree;
022    
023    /**
024     * <p>
025     * The common exception thrown by problems during the rtree methods. Thats the exception a user of
026     * the package gets if errors occur *
027     * </p>
028     *
029     * @author Wolfgang Baer - WBaer@gmx.de
030     */
031    public class RTreeException extends Exception {
032    
033        /**
034         * Constructor for RTreeException.
035         */
036        public RTreeException() {
037            super();
038        }
039    
040        /**
041         * Constructor for RTreeException.
042         *
043         * @param message
044         */
045        public RTreeException( String message ) {
046            super( message );
047        }
048    }