📄 persistenceexception.java
字号:
/**
* Copyright (c) 2003-2005 Craig Setera
* All Rights Reserved.
* Licensed under the Eclipse Public License - v 1.0
* For more information see http://www.eclipse.org/legal/epl-v10.html
*/
package eclipseme.core.persistence;
/**
* An exception that may occur during the process of persisting
* platform components.
* <p>
* <b>Note:</b> This class/interface is part of an interim API that is still
* under development and expected to change before reaching stability. It is
* being made available at this early stage to solicit feedback from pioneering
* adopters on the understanding that any code that uses this API will almost
* certainly be broken as the API evolves.
* </p>
* Copyright (c) 2003-2005 Craig Setera<br>
* All Rights Reserved.<br>
* Licensed under the Eclipse Public License - v 1.0<p/>
* <br>
* $Revision: 1.1 $
* <br>
* $Date: 2006/02/11 21:26:57 $
* <br>
* @author Craig Setera
*/
public class PersistenceException extends Exception {
/**
* Construct a new exception.
*/
public PersistenceException() {
super();
}
/**
* Construct a new exception.
*
* @param message
*/
public PersistenceException(String message) {
super(message);
}
/**
* Construct a new exception.
*
* @param cause
*/
public PersistenceException(Throwable cause) {
super(cause);
}
/**
* Construct a new exception.
*
* @param message
* @param cause
*/
public PersistenceException(String message, Throwable cause) {
super(message, cause);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -