📄 vsdkexception.java
字号:
//===========================================================================//=-------------------------------------------------------------------------=//= Module history: =//= - December 8 2006 - Oscar Chavarro: Original base version =//===========================================================================package vsdk.toolkit.common;/**The VSDKException abstract class provides an interface for *Exceptionstyle classes inside the Vitral SDK. This serves two purposes: - To help in design level organization of exceptions (this eases the study of the class hierarchy) - To provide a place to locate possible future operations, common to all exceptions (but none of these as been detected yet)*/public abstract class VSDKException extends Exception { public VSDKException() { } public VSDKException(String message) { super(message); } public VSDKException(String message, Throwable cause) { super(message, cause); } public VSDKException(Throwable cause) { super(cause); }}//===========================================================================//= EOF =//===========================================================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -