📄 notimplementedyetruntimeexception.java
字号:
// Copyright <applicate>, 2001. All Rights Reserved.
// This software is the proprietary information of www.applicate.de.
// Use is subject to license terms.
package de.applicate.util.exception;
// import de.applicate.util.exception.NotImplementedYetRuntimeException;
// $Log: NotImplementedYetRuntimeException.java,v $
// Revision 1.1 2003/01/16 13:05:12 mwulff
// initial version
//
// Revision 1.1 2003/01/07 15:13:25 willaxt
// *** empty log message ***
//
// Revision 1.4 2002/01/09 19:28:44 hs
// /r/r/n => /r/n
//
// Revision 1.3 2002/01/09 18:53:06 fb
// initial commit from frank
//
// Revision 1.2 2001/08/11 00:54:53 hs
// no message
//
// Revision 1.1 2001/08/03 00:37:14 hs
// no message
//
/**
* This exception can be trown if a method has an empty body till now.<br>
* This class is NOT derived from {@link de.applicate.util.exception.NestingException}!<br>
* Use this exception when you extend a class and a method must be override to work proper but you didn't till now.<br>
* Excample:
* <pre><code>
* public String toString() {
* throw new NotImplementedYetRuntimeException("Will be implemented soon");
* }
*
*@author hs
*@created 30. Juli 2001
*@version $Author: mwulff $ checked in $Revision: 1.1 $ at $Date: 2003/01/16 13:05:12 $
*@see de.applicate.util.exception.NotImplementedYetException
*/
public class NotImplementedYetRuntimeException extends RuntimeException {
/**
*Constructor for the NotImplementedYetRuntimeException object
*/
public NotImplementedYetRuntimeException() {
super("Not implemented yet");
}
/**
*Constructor for the NotImplementedYetRuntimeException object
*
*@param _sMessage Parameter name is self-explanatory!
*/
public NotImplementedYetRuntimeException(String _sMessage) {
super(_sMessage);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -