codegenerationexception.java
来自「java 调用windows的api」· Java 代码 · 共 28 行
JAVA
28 行
package org.jawin.browser.codegen;
/**
* A catch all exception thrown during code geenration if something
* goes wrong
*
* <p>Title: Jawin Code Generation GUI</p>
* <p>Description: GUI for exploring type libraries and generating Java code</p>
* <p>Copyright: Copyright (c) 2003</p>
* <p>Company: Open Source Incentive</p>
*
* @author Josh Passenger
* @version 1.0
*/
public class CodeGenerationException extends Exception
{
public CodeGenerationException(String message)
{
super(message);
}
public CodeGenerationException(String message, Exception e)
{
super(message + " - " + e.toString());
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?