Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.metadata.basic / org.gvsig.metadata.basic.swing / org.gvsig.metadata.swing.basic.api / src / main / java / org / gvsig / metadata / swing / basic / api / CreateJMetadataPanelException.java @ 40608

History | View | Annotate | Download (1.85 KB)

1
/* gvSIG. Geographic Information System of the Valencian Government
2
 *
3
 * Copyright (C) 2010 Infrastructures and Transports Department
4
 * of the Valencian Gobernment (CIT)
5
 * 
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 * 
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 * 
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
 * MA  02110-1301, USA.
20
 * 
21
 */
22

    
23
/*
24
 * AUTHORS (In addition to CIT):
25
 * 2010 Institute of New Imaging Technologies (INIT): 
26
 *   http://www.init.uji.es
27
 * Geographic Information research group: 
28
 *   http://www.geoinfo.uji.es
29
 * Universitat Jaume I UJI, Spain
30
 */
31
package org.gvsig.metadata.swing.basic.api;
32

    
33
import org.gvsig.metadata.Metadata;
34
import org.gvsig.metadata.exceptions.MetadataException;
35

    
36
public class CreateJMetadataPanelException extends MetadataException {
37

    
38
        /**
39
         * 
40
         */
41
        private static final long serialVersionUID = 7989045357127054749L;
42

    
43
        public CreateJMetadataPanelException(Metadata metadata, Throwable cause) {
44
                super(
45
                                "Can't create a JMetadataPanel based on this metadata: '%(metadata)'",
46
                                cause,
47
                                "_cant_create_a_JMetadataPanel_based_on_this_metadata_XmetadataX",
48
                                serialVersionUID
49
                );
50
                String name;
51
                try {
52
                        name = metadata.getMetadataName();
53
                } catch(Exception e) {
54
                        name = null;
55
                }
56
                if( name==null ) {
57
                        name = "(unknow)";
58
                }
59
                setValue("metadata", name);
60
        }
61
}