Statistics
| Revision:

root / tags / v1_0_2_Build_912 / libraries / libCq CMS for java.old / src / org / cresques / io / exceptions / NotSupportedExtensionException.java @ 11422

History | View | Annotate | Download (310 Bytes)

1 9056 nacho
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
}