Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there anything like .NET's NotImplementedException in Java?

share|improve this question

3 Answers

up vote 160 down vote accepted

Commons Lang has it: http://commons.apache.org/lang/api-2.4/org/apache/commons/lang/NotImplementedException.html

Or you could throw a UnsupportedOperationException - http://java.sun.com/j2se/1.4.2/docs/api/java/lang/UnsupportedOperationException.html

share|improve this answer
6  
It appears that NotImplementedException has been removed from Commons Lang 3.0. – Michael Younkin Aug 19 '11 at 15:17
1  
I think since the UnsupportedOperationException is part of the collections framework, it should only be used if it is used in the conext of Collections. Otherwise a RuntimeException should be used. docs.oracle.com/javase/7/docs/technotes/guides/collections/… – L.Butz May 16 '12 at 14:06
4  
@LeonardButz It comes from java.lang: docs.oracle.com/javase/1.5.0/docs/api/java/lang/… – Ravi Wallau May 24 '12 at 19:25
2  
@RaviWallau I saw this: docs.oracle.com/javase/7/docs/api/java/lang/… There stands that this class is a member of the Java Collection Framework. – L.Butz Jul 11 '12 at 10:56
@LeonardButz You are right. Not sure why that is. – Ravi Wallau Jul 14 '12 at 1:54

I think the UnsupportedOperationException is what you are looking for.

http://java.sun.com/javase/6/docs/api/java/lang/UnsupportedOperationException.html

share|improve this answer
9  
I say it is something quite different. The NIE also tells it may not implemented yet, where the UOE says me it never will... – Dykam Feb 24 '10 at 21:01
1  
@Dykam, then wouldn't it be a NotImplementedYetException? – Yishai Feb 24 '10 at 21:06
30  
@Dykam: new UnsupportedOperationException("Not implemented yet") - happy? – Michael Borgwardt Feb 24 '10 at 21:08
I didn't mean it was worse, just had a different use case. – Dykam Feb 25 '10 at 5:46
1  
new UnsupportedOperationException("Not implemented yet") is an awesome idea! :) in lang3 for some reason I don't have NotImplementedException so this is a great solution – ufk Jul 6 '11 at 9:35

You could do it yourself (thats what I did) - in order to not be bothered with exception handling, you simply extend the RuntimeException, your class could look something like this:

public class NotImplementedException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public NotImplementedException(){}
}

You could extend it to take a message - but if you use the method as I do (that is, as a reminder, that there is still something to be implemented), then usually there is no need for additional messages.

I dare say, that I only use this method, while I am in the process of developing a system, makes it easier for me to not lose track of which methods are still not implemented properly :)

Cheers, Ready4Android

share|improve this answer
1  
I like this solution the best because it's easy to have a special error handler for it, it's easy to search for it by finding all references to the NotImplementedException constructor, and it's just a few lines of code. But it is a bit inconvenient to have to declare a new class with its own file. – Derrick Coetzee Mar 31 '12 at 13:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.