Cross Reference: NotImplementedException.java
xref
: /
owl-s
/
src
/
org
/
mindswap
/
exceptions
/
NotImplementedException.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
/*
* Created on Dec 13, 2004
*/
package
org
.
mindswap
.
exceptions
;
/**
*
@author
Evren Sirin
*/
public
class
NotImplementedException
extends
RuntimeException
{
/**
*
*/
public
NotImplementedException
() {
super
(
"Not implemented yet!"
);
}
public
NotImplementedException
(
String
msg
) {
super
(
msg
);
}
}