?? exceptionreport.java
字號:
package com.esri.solutions.jitk.datasources.ogc.ows;
/*
* <ows:ExceptionReport version='1.1.0' language='en' xmlns:ows='http://www.opengis.net/ows'>
* <ows:Exception exceptionCode='InvalidParameterValue'>
* <ows:ExceptionText>The spatial operation is invalid (Unsupported geometry type: MultiSurface).</ows:ExceptionText>
* </ows:Exception>
* </ows:ExceptionReport>
*/
public class ExceptionReport {
protected String _exceptionText;
public ExceptionReport() {
}
public String getExceptionText() {
return _exceptionText;
}
public void setExceptionText(String text) {
_exceptionText = text;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -