?? pushletexception.java
字號:
// Copyright (c) 2000 Just Objects B.V. <just@justobjects.nl>// Distributable under LGPL license. See terms of license at gnu.org.package nl.justobjects.pushlet.util;/** * Generic exception wrapper. * * @author Just van den Broecke * @version $Id: PushletException.java,v 1.1 2005/02/15 15:14:34 justb Exp $ */public class PushletException extends Exception { static final long serialVersionUID = 316005l; private PushletException() { } public PushletException(String aMessage, Throwable t) { super(aMessage + "\n embedded exception=" + t.toString()); } public PushletException(String aMessage) { super(aMessage); } public PushletException(Throwable t) { this("PushletException: ", t); } public String toString() { return "PushletException: " + getMessage(); }}/* * $Log: PushletException.java,v $ * Revision 1.1 2005/02/15 15:14:34 justb * *** empty log message *** * * */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -