templateprocessorexception.java
来自「METAmorphoses is a system for flexible a」· Java 代码 · 共 28 行
JAVA
28 行
package cz.cvut.felk.cs.metamorphoses.template;/** * <p>description of this class is missing!</p> * <p> * <b>History:</b><br/> * Created: 7.4.2004<br/> * Last change: 7.4.2004<br/> * </p> * @author Martin Svihla (martin@svihla.net) */public class TemplateProcessorException extends Exception { public TemplateProcessorException(String message, Exception e) { super(message, e); //System.out.println("TemplateProcessorException: " + this.getLocalizedMessage()); //e.printStackTrace(); } public TemplateProcessorException(String message) { super(message); //System.out.println("TemplateProcessorException: " + message); //this.printStackTrace(); } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?