📄 assertfailedexception.java
字号:
package org.jpos.util;import java.io.PrintStream;import org.jpos.iso.ISOException;/** * AssertFailedException * @author <a href="mailto:apr@cs.com.uy">Alejandro P. Revilla</a> * @version $Revision: 1.1 $ $Date: 2000/11/07 01:04:37 $ */public class AssertFailedException extends ISOException { public AssertFailedException() { super(); } public AssertFailedException (String s) { super(s); } public AssertFailedException (Exception nested) { super(nested); } public AssertFailedException (String s, Exception nested) { super(s, nested); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -