Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / fmap / layers / OperationNotSupportedException.java @ 217

History | View | Annotate | Download (788 Bytes)

1
package com.iver.cit.gvsig.fmap.layers;
2

    
3
/**
4
 * Lanzada cuando se intenta realizar una operaci?n generalmente sobre una clase
5
 * abstracta o interfaz y la implementaci?n de dicha clase abstracta o interfaz no soporta dicha 
6
 * operaci?n. Ver la descripci?n del m?todo que la origin?
7
 */
8
public class OperationNotSupportedException extends Exception {
9
        /**
10
         * 
11
         */
12
        public OperationNotSupportedException() {
13
                super();
14

    
15
        }
16
        /**
17
         * @param message
18
         */
19
        public OperationNotSupportedException(String message) {
20
                super(message);
21

    
22
        }
23
        /**
24
         * @param message
25
         * @param cause
26
         */
27
        public OperationNotSupportedException(String message, Throwable cause) {
28
                super(message, cause);
29

    
30
        }
31
        /**
32
         * @param cause
33
         */
34
        public OperationNotSupportedException(Throwable cause) {
35
                super(cause);
36

    
37
        }
38
}