📄 echofault.java
字号:
package org.codehaus.xfire.message.wrapped;public class EchoFault extends Exception{ private String customMessage; private String anotherProperty; public EchoFault() { } public EchoFault(String msg) { super(msg); } public EchoFault(String msg, Throwable t) { super(msg, t); } public String getCustomMessage() { return customMessage; } public void setCustomMessage(String customMessage) { this.customMessage = customMessage; } public String getAnotherProperty() { return anotherProperty; } public void setAnotherProperty(String anotherProperty) { this.anotherProperty = anotherProperty; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -