shapetypenotsupportedexception.java

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

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

/**
 * Thrown when an attempt is made to load a shapefile
 * which contains a shape type that is not supported
 * by the loader
 */
public class ShapeTypeNotSupportedException extends ShapefileException{
    public ShapeTypeNotSupportedException(String s){
        super(s);
    }
}

⌨️ 快捷键说明

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