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