Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_2_Build_1044 / prototypes / VectorialAvanzado / extensions / extGraph / src / com / iver / cit / gvsig / graph / core / GraphException.java @ 20099

History | View | Annotate | Download (448 Bytes)

1
/*
2
 * Created on 20-jun-2006 by azabala
3
 *
4
 */
5
package com.iver.cit.gvsig.graph.core;
6

    
7
/**
8
 * Exception throwed by any class of the Graph package.
9
 * @author alzabord
10
 *
11
 */
12
public class GraphException extends Exception {
13
        public GraphException(Exception e){
14
                super(e);
15
        }
16
        
17
        public GraphException(){
18
                super();
19
        }
20
        
21
        public GraphException(String msg){
22
                super(msg);
23
        }
24
        
25
        public GraphException(String msg, Exception e){
26
                super(msg, e);
27
        }
28
        
29
        
30
}