mapserverconnectionexception.java
来自「在ArcGIS中应用EJB的实例」· Java 代码 · 共 26 行
JAVA
26 行
package com.esri.arcgis.samples.ejb;
/**
* MapServerConnectionExceptions are thrown when the MapEJB failed to connect to an ArcGIS MapServer.
*/
public class MapServerConnectionException extends Exception {
/**
* Empty constructor for the MapServerConnectionException
*/
public MapServerConnectionException() {
}
/**
* MapServerConnectionException constructor that populates the exception.
* @param msg the exception message.
*/
public MapServerConnectionException(String msg){
super("MapServer connection failed: " + msg);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?