Statistics
| Revision:

root / trunk / libraries / libCq_CMS_praster / src / org / cresques / io / exceptions / NotSupportedExtensionException.java @ 8026

History | View | Annotate | Download (310 Bytes)

1
package org.cresques.io.exceptions;
2

    
3
/**
4
 * Excepci?n cuando una extensi?n de fichero no est? soportada
5
 * por la aplicaci?n.
6
 * @author Nacho Brodin (brodin_ign@gva.es)
7
 *
8
 */
9
public class NotSupportedExtensionException extends Exception{
10
        public NotSupportedExtensionException(String msg){
11
                super(msg);
12
        }
13
}