📄 factoryexception.java
字号:
package com.esri.solutions.jitk.common.agslocal;
/**
* Custom exception that extends {@link Exception} that will be used
* when creating an {@link IServerContext} object.
*/
@SuppressWarnings("serial")
public class FactoryException extends Exception {
/**
* Constructor that initializes the instance with the given
* <code>message</code>.
*
* @param message {@link String} exception message.
*/
public FactoryException(String message) {
super(message);
}
/**
* Constructor that initializes the instance with the given
* <code>ex</code> by calling super(ex).
*
* @param ex
*/
public FactoryException(Exception ex) {
super(ex);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -