shapefileexception.java

来自「geotools的源码」· Java 代码 · 共 16 行

JAVA
16
字号
package uk.ac.leeds.ccg.shapefile;

/**
 * Thrown when an error relating to the shapefile
 * occures
 */
public class ShapefileException extends Exception{
    public ShapefileException(String s){
        super(s);
    }
}




⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?