📄 tomcatmanagerexception.java
字号:
/** * @author <a href="mailto:novotny@gridsphere.org">Jason Novotny</a> * @version $Id: TomcatManagerException.java 4496 2006-02-08 20:27:04Z wehrens $ */package org.gridsphere.services.core.tomcat;public class TomcatManagerException extends Exception { /** * Constructs an instance of PortletException with the given text. * The portlet container may use the text write it to a log. * * @param msg the exception text */ public TomcatManagerException(String msg) { super(msg); } /** * Constructs a new portlet exception with the given text. * The portlet container may use the text write it to a log. * * @param msg the exception text * @param cause the root cause */ public TomcatManagerException(String msg, Throwable cause) { super(msg, cause); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -