Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libTools / src / org / gvsig / tools / dynobject / exception / DynMethodException.java @ 25791

History | View | Annotate | Download (403 Bytes)

1
package org.gvsig.tools.dynobject.exception;
2

    
3
import org.gvsig.tools.exception.BaseException;
4

    
5
public abstract class DynMethodException extends BaseException {
6

    
7

    
8
        /**
9
         *
10
         */
11
        private static final long serialVersionUID = 6581546517547877738L;
12

    
13
        public DynMethodException(String messageFormat, String messageKey,
14
                        long serialVersionUID2) {
15
                super(messageFormat, messageKey, serialVersionUID2);
16
        }
17

    
18
}