📄 baseexception.java
字号:
package com.thoughtworks.xstream.core;/** * JDK1.3 friendly exception that retains cause. */public abstract class BaseException extends RuntimeException { private Throwable cause; protected BaseException(String message, Throwable cause) { super(message + (cause == null ? "" : " : " + cause.getMessage())); this.cause = cause; } protected BaseException(Throwable cause) { this("", cause); } protected BaseException(String message) { this(message, null); } protected BaseException() { this("", null); } public Throwable getCause() { return cause; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -