vote up 13 vote down star
6

This really, really urks me, so I hope that someone can give me a reasonable justification for why things are as they are.

NotImplementedException. You are pulling my leg, right?

No, I'm not going to take the cheap stab at this by saying, "hang on, the method is implemented - it throws a NotImplementedException." Yes, that's right, you have to implement the method to throw a NotImplementedException (unlike a pure virtual function call in C++ - now that makes sense!). While that's pretty damn funny, there is a more serious problem in my mind.

I just wonder, in the presence of the NotImplementedException, how can anyone do anything with .Net? Are you expected to wrap every abstract method call with a try catch block to guard against methods that might not be implemented? If you catch such an exception, what the heck are you supposed to do with it??

I see no way to test if a method is actually implemented without calling it. Since calling it may have side effects, I can't do all my checks up-front and then run my algorithm. I have to run my algorithm, catch NotImplementedExceptions and the some how roll back my application to some sane state.

It's crazy. Mad. Insane. So the question is: Why does the NotImplementedException exist?

As a preemptive strike, I do not want anyone to respond with, "because designers need to put this in the auto-generated code." This is horrid. I would rather the auto-generated code not compile until you supply an implementation. For example, the auto generated implementation could be "throw NotImplementedException;" where the NotImplementedException is not defined!

Has anyone ever caught and handled a NotImplementedException? Have you ever left a NotImplementedException in your code? If so, did this represent a time bomb (ie, you accidentally left it there), or a design flaw (the method should not be implemented and will never be called)?

I'm very suspicious of the NotSupportedException also... Not supported? What the? If it's not supported, why is it part of your interface? Can anyone at Microsoft spell improper inheritance? But I might start another question for that if I don't get too abuse for this one.

Additional info:

This is an interesting read on the subject.

There seems to be a strong agreement with Brad Abrams that "NotImplementedException is for functionality that is just not yet implemented, but really should (and will be). Something like what you might start with when you are building a class, get all the methods there throwing NotImplementedException, then flush them out with real code…"

Comments from Jared Parsons are very weak and should probably be ignored: NotImplementedException: Throw this exception when a type does not implement a method for any other reason.

The MSDN is even weaker on the subject, merely stating that, "The exception that is thrown when a requested method or operation is not implemented."

flag
6  
+1 for raising a valid question about a fuzzy issue that deserves attention. – Mike Hofer Jan 4 '09 at 11:46
Do I get a badge along with the Rant tag? – Daniel Paull Jan 5 '09 at 5:15
I can only guess you have never had to implement a library with a given interface... – leppie Jul 30 at 15:46
1  
Good guess, but you're not right. I can only guess you don't understand the question. – Daniel Paull Jul 31 at 5:21
@Daniel - there is a more etymological answer, also. In Win32 C API, there was defined the E_NOTIMPL return value. Every such return value was mapped to a .Net exception. – Heath Hunnicutt Nov 15 at 22:48
show 1 more comment

21 Answers

vote up 49 vote down check

There is one situation I find it useful: TDD.

I write my tests, then I create stubs so the tests compile. Those stubs do nothing but throw new NotImplementedException();. This way the tests will fail by default, no matter what. If I used some dummy return value, it might generate false positives. Now that all tests compile and fail because there is no implementation, I tackle those stubs.

Since I never use a NotImplementedException in any other situation, no NotImplementedException will ever pass onto release code, since it will always make some test fail.

You don't need to catch it all over the place. Good APIs document the exceptions thrown. Those are the ones you should look for.

EDIT: I wrote an FxCop rule to find them and I thought I should share it with SO, so, here it is.

This is the code:

using System;
using Microsoft.FxCop.Sdk;

/// <summary>
/// An FxCop rule to ensure no <see cref="NotImplementedException"/> is
/// left behind on production code.
/// </summary>
internal class DoNotRaiseNotImplementedException : BaseIntrospectionRule
{
    private TypeNode _notImplementedException;
    private Member _currentMember;

    public DoNotRaiseNotImplementedException()
        : base("DoNotRaiseNotImplementedException",
               // The following string must be the assembly name (here
               // Bevonn.CodeAnalysis) followed by a dot and then the
               // metadata file name without the xml extension (here
               // DesignRules). See the note at the end for more details.
               "Bevonn.CodeAnalysis.DesignRules",
               typeof (DoNotRaiseNotImplementedException).Assembly) { }

    public override void BeforeAnalysis()
    {
        base.BeforeAnalysis();
        _notImplementedException = FrameworkAssemblies.Mscorlib.GetType(
            Identifier.For("System"),
            Identifier.For("NotImplementedException"));
    }

    public override ProblemCollection Check(Member member)
    {
        var method = member as Method;
        if (method != null)
        {
            _currentMember = member;
            VisitStatements(method.Body.Statements);
        }
        return Problems;
    }

    public override void VisitThrow(ThrowNode throwInstruction)
    {
        if (throwInstruction.Expression.Type
            .IsAssignableTo(_notImplementedException))
        {
            var problem = new Problem(
                GetResolution(),
                throwInstruction.SourceContext,
                _currentMember.Name.Name);
            Problems.Add(problem);
        }
    }
}

And this is the rule metadata:

<?xml version="1.0" encoding="utf-8" ?>
<Rules FriendlyName="Bevonn Design Rules">
  <Rule TypeName="DoNotRaiseNotImplementedException" Category="Bevonn.Design" CheckId="BCA0001">
    <Name>Do not raise NotImplementedException</Name>
    <Description>NotImplementedException should not be used in production code.</Description>
    <Url>http://stackoverflow.com/questions/410719/notimplementedexception-are-they-kidding-me</Url>
    <Resolution>Implement the method or property accessor.</Resolution>
    <MessageLevel Certainty="100">CriticalError</MessageLevel>
    <Email></Email>
    <FixCategories>NonBreaking</FixCategories>
    <Owner></Owner>
  </Rule>
</Rules>

To build this you need to:

  • reference Microsoft.FxCop.Sdk.dll and Microsoft.Cci.dll

  • Put the metadata in a file called DesignRules.xml and add it as an embedded resource to your assembly

  • Name your assembly Bevonn.CodeAnalysis. If you want to use different names for either the metadata or the assembly files, make sure you change the second parameter to the base constructor accordingly.

Then simply add the resulting assembly to your FxCop rules and take those damned exceptions out of your precious code. There are some corner cases where it won't report a NotImplementedException when one is thrown but I really think you are hopeless if you're actually writing such cthulhian code. For normal uses, i.e. throw new NotImplementedException();, it works, and that is all that matters.

link|flag
2  
I agree completely. Throwing this in any other setting is like having an "Under Construction" sign on your web page. – Øyvind Skaar Jan 4 '09 at 10:40
Nice. However, Why is NotImplementedException part of the .net core? I'd prefer this concept to be vendor specific and I would conditionally compile out my NotImplementedException in all public release builds. This is not a concept for the .net core. – Daniel Paull Jan 4 '09 at 10:56
What causes damage in it being there? For me, it saves me the time of writing a dumb exception. And with my approach, I don't need to compile it out. I can guarantee it is never used in release code. And it sure doesn't make the framework much larger... – Martinho Fernandes Jan 4 '09 at 11:09
Ok, I give it to you that it being an exception may not be the best solution. I would prefer the aspect idea. – Martinho Fernandes Jan 4 '09 at 11:14
@Martinho: yeah baby, you're coming round. – Daniel Paull Jan 4 '09 at 11:21
show 8 more comments
vote up 17 vote down

It's there to support a fairly common use case, a working but only partially completed API. Say I want to developers to test and evaluate my API - WashDishes() works, at least on my machine, but I haven't gotten around yet to coding up DryDishes(), let alone PutAwayDishes(). Rather than silently failing, or giving some cryptic error message, I can be quite clear about why DryDishes() doesn't work - I haven't implemented it yet.

Its sister exception NotSupportedException make sense mostly for provider models. Many dishwashers have a drying function, so belongs in the interface, but my discount dishwasher doesn't support it. I can let that be known via the NotSupportedException

link|flag
But why is it a system exception? Why cant you throw your own exception? Why has MS made this part of the .net core? As for the dishwasher without the dry function - why does it have a dry method? Improper inheritance. – Daniel Paull Jan 4 '09 at 9:35
Why would you rather write your exception for such a situation? – Martinho Fernandes Jan 4 '09 at 10:23
because then I can remove it completely from release builds to avoid accidentally leaving one in the code. – Daniel Paull Jan 4 '09 at 11:00
But you still have the freedom to do so; you aren't compelled to use NotSupportedException. Nonetheless, the situation arises so frequently that a standard class exists for it in the Framework, as it should. – Mike Hofer Jan 4 '09 at 11:49
Correction: NotImplementedException, although, NotSupportedException is equally applicable. – Mike Hofer Jan 4 '09 at 11:49
show 4 more comments
vote up 12 vote down

Why does the NotImplementedException exist?

NotImplementedException is a great way to say that something is not ready yet. Why it's not ready is a separate question for method's authors. In production code you're unlikely to catch this exception, but if you did you can immediately see what happened and it's much better than trying to figure out why methods was called but nothing happened or even worse - receive some "temporary" result and get "funny" side effects.

Is NotImplementedException the C# equivalent of Java's UnsupportedOperationException?

No, .NET has NotSupportedException

I have to run my algorithm, catch NotImplementedExceptions and the some how roll back my application to some sane state

Good API has XML methods documentation that describes possible exceptions.

I'm very suspicious of the NotSupportedException also... Not supported? What the? If it's not supported, why is it part of your interface?

There can be millions reasons. For example you can introduce new version of API and don't want to/can't support old methods. Again, it is much better to see descriptive exception rather then digging into documentation or debugging 3rd party code.

link|flag
Thank you aku - API support - deprecating methods might be a reasonable reason for this exception. Thouggh I'd prefer to see a DeprecatedMethodException. – Daniel Paull Jan 4 '09 at 9:46
2  
There is an Obsolete attribute, I wish we have something like NotImplemented attribute to get compile-time warnings. – aku Jan 4 '09 at 9:51
@aku: excellent comment - this addresses the issue of not being able to tell if a method is actually implemented before calling it (not that one should ever have to do that). – Daniel Paull Jan 4 '09 at 10:59
Even though I use the exception a lot (see my answer), I would rather like that attribute thingy, especially if I could turn it into an aspect that throws an exception(NotImplemented being my first choice, for clarity). – Martinho Fernandes Jan 4 '09 at 11:14
Java UnsupportedOperationException could also be .NET InvalidOperationException. – dalle Jan 4 '09 at 12:50
show 1 more comment
vote up 10 vote down

The main use for a NotImplementedException exception is in generated stub code: that way you don't forget to implement it!! For example, Visual Studio will explicitly implement an interface's methods/properties with the body throwing a NotImplementedException.

link|flag
So you don't forget? Whats the reminder? – Daniel Paull Jan 4 '09 at 9:33
@Daniel Paull: the exception that's thrown! – Mitch Wheat Jan 4 '09 at 9:34
@Mitch: Assuming you call the code. Not everyone uses code coverage tools, so this could be missed quite easily. – Daniel Paull Jan 4 '09 at 9:41
You better want the method to throw an exception than to simply "do nothing" because it's not implemented. That way you have the chance to find and fix the issue. – driAn Jan 4 '09 at 10:56
@Daniel Paull: and an assertion suffers from the same problem. – Mitch Wheat Jan 4 '09 at 10:57
show 1 more comment
vote up 5 vote down

I'll summarize my views on this in one place, since they're scattered throughout a few comments:

  1. You use NotImplementedException to indicate that an interface member isn't yet implemented, but will be. You combine this with automated unit testing or QA testing to identify features which still need to be implemented.

  2. Once the feature is implemented, you remove the NotImplementedException. New unit tests are written for the feature to ensure that it works properly.

  3. NotSupportedException is generally used for providers that don't support features that don't make sense for specific types. In those cases, the specific types throw the exception, the clients catch them and handle them as appropriate.

  4. The reason that both NotImplementedException and NotSupportedException exist in the Framework is simple: the situations that lead to them are common, so it makes sense to define them in the Framework, so that developers don't have to keep redefining them. Also, it makes it easy for clients to know which exception to catch (especially in the context of a unit test). If you have to define your own exception, they have to figure out which exception to catch, which is at the very least a counter-productive time sink, and frequently incorrect.

link|flag
You admit that the NotImplementedException will be removed - if this is the case, there is no need for it in the .net core. It's your own private concern of your own private development process. – Daniel Paull Jan 4 '09 at 12:15
1  
Did you not read point 4? – Mike Hofer Jan 4 '09 at 12:54
vote up 4 vote down

Re NotImplementedException - this serves a few uses; it provides a single exception that (for example) your unit tests can lock onto for incomplete work. But also, it really does do what is says: this simply isn't there (yet). For example, "mono" throws this all over the place for methods that exist in the MS libs, but haven't been written yet.

Re NotSupportedException - not everything is available. For example, many interfaces support a pair "can you do this?" / "do this". If the "can you do this?" returns false, it is perfectly reasonable for the "do this" to throw NotSupportedException. Examples might be IBindingList.SupportsSearching / IBindingList.Find() etc.

link|flag
Ok, so there should be a Mone.NotImplementedException - why is it part of the .net core? If you avoid improper inheritance, an object is what it says it is, so the "can you do this?" / "do this" are redundant. – Daniel Paull Jan 4 '09 at 9:37
I'm not sure I agree fully that this is improper inheritance, but there we go... – Marc Gravell Jan 4 '09 at 9:53
It sure smells like improper inheritance. – Daniel Paull Jan 4 '09 at 10:08
vote up 4 vote down

Most developers at Microsoft are familiar with design patterns in which a NotImplementedException is appropriate. It's fairly common actually.

A good example is a Composite Pattern, where many objects can be treated as a single instance of an object. A component is used as a base abstract class for (properly) inherited leaf classes. For example, a File and Directory class may inherit from the same abstract base class, because they are very similar types. This way, they can be treated as a single object (which makes sense when you think about what files and directories are - in Unix for example, everything is a file).

So in this example, there would be a GetFiles() method for the Directory class, however, the File class would not implement this method, because it doesn't make sense to do so. Instead, you get a NotImplementedException , because a File does not have children the way a Directory does.

Note that this is not limited to .NET - you'll come across this pattern in many OO languages and platforms.

link|flag
Why would the File not return an empty list when asked for it's children through the abstract interface? – Daniel Paull Jan 4 '09 at 9:44
As an application developer, I certainly wouldn't expect it to. How about a method called AddFile() that is implemented by the Directory class - what would you expect if you called this on the File class? I would expect an exception. This behavior should be consistent in a good API. – Jarvis Jan 4 '09 at 9:50
A File is not a directory - improper inheritance. Mutable abstract interfaces need to be designed carefully. – Daniel Paull Jan 4 '09 at 10:09
-1, if the subclasses can't implement GetFiles then the hierarchy is wrong, en.wikipedia.org/wiki/… – orip Jan 4 '09 at 10:35
@orip: you da man. Observe the voice of reason. – Daniel Paull Jan 4 '09 at 10:55
show 3 more comments
vote up 4 vote down

Why do you feel the need to catch every possible exception? Do you wrap every method call with catch (NullReferenceException ex) too?

Stub code throwing NotImplementedException is a placeholder, if it makes it to release it should be bug just like NullReferenceException.

link|flag
1  
If used as merely as a placeholder, Why is NotImplementedException part of the .net core? I'd prefer this concept to be vendor specific and I would conditionally compile out my NotImplementedException in all public release builds. This is not a concept for the .net core. – Daniel Paull Jan 4 '09 at 10:50
@Daniel, I guess we have different opinions about it, but I would definitely not compile out the exceptions in release builds, just like I wouldn't catch a NullReferenceException - I'd fix the bug. – orip Jan 5 '09 at 8:00
@orip: I think you misread. Compile out the NotImplementedException class, not the places it's used. This would force any stray uses of the NotImplementedException to become compile errors. – Daniel Paull Jan 12 '09 at 12:25
@Daniel: ah, that makes sense. – orip Jan 13 '09 at 22:05
vote up 3 vote down

This sounds like a potential minefield to me. In the distant past I once worked on a legacy network system that had been running nonstop for years and which fell over one day. When we tracked the problem down, we found some code that had clearly not been finished and which could never have worked - literally, like the programmer got interrupted during coding it. It was obvious that this particular code path had never been taken before.

Murphy's law says that something similar is just begging to happen in the case of NotImplementedException. Granted in these days of TDD etc, it should be picked up before release, and at least you can grep code for that exception before release, but still.

When testing it is difficult to guarantee coverage of every case, and this sounds like it makes your job harder by making run time issues of what could have been compile time issues. (I think a similar sort of 'technical debt' comes with systems that rely heavily on 'duck typing', while I acknowledge they are very useful).

link|flag
vote up 3 vote down

I think there are many reasons why MS added NotImplementedException to the framework:

  • As a convenience; since many developers will need it during development, why should everybody have to roll their own?
  • So that tools can rely on its presence; for example, Visual Studio's "Implement Interface" command generate method stubs that throw NotImplementedException. If it were not in the framework, this would not be possible, or at least rather awkward (for example, it could generate code that doesn't compile until you add your own NotImplementedException)
  • To encourage a consistent "standard practice"

Frankodwyer thinks of NotImplementedException as a potential timebomb. I would say that any unfinished code is a timebomb, but NotImplementedException is much easier to disarm than the alternatives. For example, you could have your build server scan the source code for all uses of this class, and report them as warnings. If you want to be really ban it, you could even add a pre-commit hook to your source-control system that prevents checkin of such code.

Sure, if you roll your own NotImplementedException, you can remove it from the final build to make sure that no time bombs are left. But this will only work if you use your own implementation consistently in the entire team, and you must make sure that you don't forget to remove it before you release. Also, you might find that you can't remove it; maybe there are a few acceptable uses, for example in testing code that is not shipped to customers.

link|flag
Why not have a "Microsoft.Development.Support" or similar assembly that has useful classes and utilities (including NotImplementedException). The intent is to reference that assembly in dev builds, but not in released code? – Daniel Paull Jan 4 '09 at 12:18
This would require adding the Microsoft.Development.Support assembly reference to each project that is using it, creating another inconvenience and hurdle for tools. – oefe Jan 4 '09 at 13:40
And the problem with this is? I'd rather have my system correct that have a minor inconvenience for my developers. It would be more convenient to do way with DLLs, but the benefit justifies the cost (by cost I mean effort and complexity). – Daniel Paull Jan 5 '09 at 0:48
vote up 2 vote down

There is really no reason to actually catch a NotImplementedException. When hit, it should kill your app, and do so very painfully. The only way to fix it is not by catching it, but changing your source code (either implementing the called method, or changing the calling code).

link|flag
This is a very strange answer. If no one is ever meant to catch the exception, why would one ever throw it and why is it part of the .Net core? NOTE: just because you throw an exception doesn't mean it won't be caught. Why not just Assert(false) in both debug and release builds? – Daniel Paull Jan 4 '09 at 23:25
What would you do in the catch clause? Specifically for NotImplementedException? – jeroenh Jan 4 '09 at 23:38
If I had my way, I would never throw nor catch the NotImplementedException. I am trying to find a case for it being part of the core library. – Daniel Paull Jan 5 '09 at 0:43
vote up 1 vote down

NotImplementedException

The exception is thrown when a requested method or operation is not implemented.

Making this a single exception defined in the .NET core makes it easier to find and eradicate them. If every developer should create their own ACME.EmaNymton.NotImplementedException it would be harder to find all of them.

NotSupportedException

The exception is thrown when an invoked method is not supported.

For instance when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.

For instance generated iterators (using yield keyword) is-a IEnumerator, but the IEnumerator.Reset method throws NotSupportedException.

link|flag
"makes it easier to find and eradicate them" - easier? That's your reason? Not because it's the right way to do it, but because it's the easy way to do it. Nice one man. – Daniel Paull Jan 4 '09 at 11:56
Why does a stream than does not support random access have a seek method? Lets not hide behind Microsoft's poor stream interface design. – Daniel Paull Jan 4 '09 at 11:57
I'm now scared of calling Reset() an any enumerator. – Daniel Paull Jan 4 '09 at 11:57
Sure an INotResetEnumerator would perhaps be better, which the IEnumerator derives from. But the leads to too many classes. – dalle Jan 4 '09 at 12:14
It would be interesting to design it properly. I disagree that it would lead to too many interfaces. – Daniel Paull Jan 4 '09 at 12:25
show 5 more comments
vote up 1 vote down

NotImplementedException is thrown for some method of .NET (see the parser C# in Code DOM which is not implemented, but the method exist !) You can verify with this method Microsoft.CSharp.CSharpCodeProvider.Parse

link|flag
I once went nuts when I realized had to write my own parser. That's really bad. – Martinho Fernandes Jan 4 '09 at 11:17
Not just "bad", but inexcusable. – Daniel Paull Jan 4 '09 at 11:25
have a look at this list: blogs.msdn.com/brada/archive/… – Daniel Paull Jan 4 '09 at 12:35
vote up 1 vote down

You need this exception for COM interop. It's E_NOTIMPL. The linked blog also shows other reasons

link|flag
If the only valid use is to map to COM's E_NOTIMPL, then this exception should surely be in the interop namespace. What other valid uses are sited on that blog? The argument that it is to indicate a transient state of development is poor; use your own exception for that. – Daniel Paull Jan 5 '09 at 22:42
vote up 0 vote down

What about prototypes or unfinished projects?

I don't think this is a really bad idea to use an exception (although I use a messagebox in that case).

link|flag
So, it should never make it into production code? Then why is it part of the .net core? If you want this concept, then just "throw new Object();" with a comment stating that the method is pending implementation. – Daniel Paull Jan 4 '09 at 9:28
BTW - I'll give you +1 because you'd prefer to use something other than the exception. Personally I'd drop in an assert( false ) and a dummy return value, assuming I need the code to compile. – Daniel Paull Jan 4 '09 at 9:31
@Daniel Paull : but surely that is more dangerous, because the assertions won't be compiled into Release code?... – Mitch Wheat Jan 4 '09 at 9:34
@Daniel Paull: in fact you've jogged my memory, and I can recall a situation where exactly that happened... – Mitch Wheat Jan 4 '09 at 9:38
If you program by contract, test your system and prove correctness, asserts are just dandy. The alternative just seems like a wing and a prayer. I am a massive advocate of asserts and getting your design right. It shouldn't be luck that makes your system work. – Daniel Paull Jan 4 '09 at 9:40
vote up 0 vote down

Well, I somewhat agree. If an interface has been made in such a way that not all class can implement all bits of it, it should've been broken down in my opinion.

If IList can or cannot be modified, it should've been broken down into two, one for the unmodifiable part (getters, lookup, etc.), and one for the modifiable part (setters, add, remove, etc.).

link|flag
vote up 0 vote down

Rarely I do use it for interface fixing. Assume that you've an interface that you need to comply but certain method will be never called by anyone, so just stick a NotImplementedException and if someone calls it they will know they are doing something wrong.

link|flag
An interface method that can never be called? What the heck? – Daniel Paull Jan 4 '09 at 10:51
If you don't implement the whole interface, don't implement it. With that methodology, you should use languages that can duck type, like Python or even c#4 :(. – Martinho Fernandes Jan 4 '09 at 11:37
So you got 10 classes implements an interface but one of them or couple of them has got extra methods that you need to call. What's the way to do it? I do implement the interface with an extra method and call it if the type matches. What's you solution? 10 separate classes? – dr. evil Jan 4 '09 at 13:09
@Slough: give me an example where this is the case and I'll fix your design free of charge. – Daniel Paull Jan 4 '09 at 13:32
IDataReader has a ton of methods on it. I've had to implement it interface before knowing that I'm only going to need three of the methods. The interface is in the .net framework. I can't change it. I'm also passing it to a framework class I can't change. It's a bad interface, but I'm stuck with it. – Mike Two Jan 4 '09 at 15:08
show 1 more comment
vote up 0 vote down

Here is one example: In Java, whenever you implement the interface Iterator, you have to override the obvious methods hasNext() and next(), but there is also delete(). In 99% of the usecases I have I do not need this, so I just throw a NotImplementedException. This is much better than silently doing nothing.

link|flag
1  
Even better would be for the interface to have no delete() method. The interfaces sounds as broken as .net streams. – Daniel Paull Jan 4 '09 at 15:01
vote up 0 vote down

They are both hacks for two common problems.

NotImplementedException is a workaround for developers who are architecture astronauts and like to write down the API first, code later. Obviously, since this is not a incremental process, you can't implement all at once and therefore you want to pretend you are semi-done by throwing NotImplementedException.

NotSupportedException is a hack around the limitation of the type systems like those found in C# and Java. In these type systems, you say that a Rectangle 'is a' Shape iff Rectangle inherits all of Shapes characteristics (incl. member functions + variables). However, in practice, this is not true. For example, a Square is a Rectangle, but a Square is a restriction of a Rectangle, not a generalization.

So when you want to inherit and restrict the behavior of the parent class, you throw NotSupported on methods which do not make sense for the restriction.

link|flag
There is no reason why the architecture astronaut can't design a sensible interface, other than - they suck at design and are not capable of doing their job. The Architect (yuk) should not have the last say in the API design; developers should be consulted and sign off prior it implementation. – Daniel Paull Jan 4 '09 at 23:36
vote up 0 vote down

From ECMA-335, the CLI specification, specificialy the CLI Library Types, System.NotImplementedException, remarks section:

"A number of the types and constructs, specified elsewhere in this Standard, are not required of CLI implementations that conform only to the Kernel Profile. For example, the floating-point feature set consists of the floating-point data types System.Single and System.Double. If support for these is omitted from an implementation, any attempt to reference a signature that includes the floating-point data types results in an exception of type System.NotImplementedException."

So, the exception is intended for implementations that implement only minimal conformance profiles. The minimum required profile is the Kernel Profile (see ECMA-335 4th edition - Partition IV, section 3), which includes the BCL, which is why the exception is included in the "core API", and not in some other location.

Using the exception to denote stubbed methods, or for designer generated methods lacking implementation is to misunderstand the intent of the exception.

As to why this information is NOT included in the MSDN documentation for MS's implementation of the CLI is beyond me.

link|flag
vote up -1 vote down

I have a few NotImplementedExceptions in my code. Often times it comes from part of an interface or abstract class. Some methods I feel I may need in the future, they make sense as being part of the class, but I just don't want to take the time to add unless I actually need it. For example, I have an interface for all the individual kinds of stats in my game. One of those kinds are a ModStat, which is the sum of the base stat plus all the modifiers (ie weapons, armor, spells). My stat interface has an OnChanged event, but my ModStat works by calculating the sum of all stats it references each time it is called. So instead of having the overhead of a ton of ModStat.OnChange events being raised every time a stat changes, I just have a NotImplementedException thrown if anyone tries to add/remove a listener to OnChange.

.NET languages are all about productivity, so why spend your time coding something you won't even use?

link|flag
1  
"so why spend your time coding something you won't even use?" Interesting - it seems that you have implemented stubs that you may never actually implement. Follow your own advice and you wont need the NotImplementedException! – Daniel Paull Jan 4 '09 at 11:14
A Daniel said, you should not write stubs for no use. If you "may" need them in the future, write them in the future. Most of the time, .NET assemblies version very well. – Martinho Fernandes Jan 4 '09 at 11:34
"Follow your own advice and you wont need the NotImplementedException!" The point of the exception here is that you can compile while still fail if the method is called, and know why your code failed. Add the code if you get the exception - simple as that. – Spodi Jan 8 '09 at 10:36
Why not throw your own exception type? Why is this a .net core concept? – Daniel Paull Jan 12 '09 at 12:28

Your Answer

Get an OpenID
or

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