Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extGraph_predes / src / com / iver / cit / gvsig / graph / GraphException.java @ 8216

History | View | Annotate | Download (443 Bytes)

1 6032 azabala
/*
2
 * Created on 20-jun-2006 by azabala
3
 *
4
 */
5
package com.iver.cit.gvsig.graph;
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
}