Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap / src / org / gvsig / fmap / core / shapes / gt2 / factory / FactoryNotFoundException.java @ 20989

History | View | Annotate | Download (1.47 KB)

1
/*
2
 * Geotools 2 - OpenSource mapping toolkit
3
 * (C) 2005, Geotools Project Managment Committee (PMC)
4
 *
5
 *    This library is free software; you can redistribute it and/or
6
 *    modify it under the terms of the GNU Lesser General Public
7
 *    License as published by the Free Software Foundation; either
8
 *    version 2.1 of the License, or (at your option) any later version.
9
 *
10
 *    This library is distributed in the hope that it will be useful,
11
 *    but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 *    Lesser General Public License for more details.
14
 *
15
 *    You should have received a copy of the GNU Lesser General Public
16
 *    License along with this library; if not, write to the Free Software
17
 *    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 */
19
package org.gvsig.fmap.core.shapes.gt2.factory;
20

    
21

    
22

    
23
/**
24
 * Thrown when a factory can't be found in the registery.
25
 *
26
 * @version $Id: FactoryNotFoundException.java 20989 2008-05-28 11:05:57Z jmvivo $
27
 * @author Martin Desruisseaux
28
 */
29
public class FactoryNotFoundException extends FactoryRegistryException {
30
    /**
31
     * Creates a new exception with the specified detail message.
32
     */
33
    public FactoryNotFoundException(final String message) {
34
        super(message);
35
    }
36

    
37
    /**
38
     * Creates a new exception with the specified detail message and cause.
39
     */
40
    public FactoryNotFoundException(final String message, final Throwable cause) {
41
        super(message, cause);
42
    }
43
}