001 /*---------------- FILE HEADER ------------------------------------------ 002 003 This file is part of deegree. 004 Copyright (C) 2001-2007 by: 005 lat/lon GmbH 006 http://www.lat-lon.de 007 008 This library is free software; you can redistribute it and/or 009 modify it under the terms of the GNU Lesser General Public 010 License as published by the Free Software Foundation; either 011 version 2.1 of the License, or (at your option) any later version. 012 013 This library is distributed in the hope that it will be useful, 014 but WITHOUT ANY WARRANTY; without even the implied warranty of 015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 016 Lesser General Public License for more details. 017 018 You should have received a copy of the GNU Lesser General Public 019 License along with this library; if not, write to the Free Software 020 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 021 022 Contact: 023 024 Andreas Poth 025 lat/lon GmbH 026 Aennchenstr. 19 027 53115 Bonn 028 Germany 029 E-Mail: poth@lat-lon.de 030 031 ---------------------------------------------------------------------------*/ 032 package org.deegree.model.crs; 033 034 /** 035 * 036 * 037 * 038 * @author <a href="mailto:poth@lat-lon.de">Andreas Poth</a> 039 * @author last edited by: $Author: poth $ 040 * 041 * @version. $Revision: 1.2 $, $Date: 2007-06-11 11:33:58 $ 042 */ 043 public class CSAccessFactoryException extends RuntimeException { 044 045 public CSAccessFactoryException() { 046 super(); 047 } 048 049 public CSAccessFactoryException( String arg0, Throwable arg1 ) { 050 super( arg0, arg1 ); 051 } 052 053 public CSAccessFactoryException( String arg0 ) { 054 super( arg0 ); 055 } 056 057 public CSAccessFactoryException( Throwable arg0 ) { 058 super( arg0 ); 059 } 060 061 }