annotatedexception.java
来自「内容:基于jdk1.4的加密算法的具体实现」· Java 代码 · 共 29 行
JAVA
29 行
package org.bouncycastle.jce.provider;class AnnotatedException extends Exception{ private Exception _underlyingException; AnnotatedException( String string, Exception e) { super(string); _underlyingException = e; } public AnnotatedException( String string) { this(string, null); } Exception getUnderlyingException() { return _underlyingException; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?