Reputation: 21704
In my application I need to throw an exception if a property of a specific class is null or empty (in case it's a string). I'm not sure what is the best exception to use in this case. I would hate to create a new exception and I'm not sure if ArgumentNullException is appropriate in this case.
Should I create a new exception or there's an exception I can use?
I don't mind to throw an ApplicationException.
Upvotes: 47
Views: 29372
Reputation: 34391
Just throw whatever as long as the error message is helpful to a developer. This class of exception should never happen outside of development, anyway.
Upvotes: 0
Reputation: 124696
There is a precedent for stretching the interpretation of ArgumentNullException to meaning "string argument is null or empty": System.Windows.Clipboard.SetText will throw an ArgumentNullException in this case.
So I wouldn't see anything wrong with using this rather than the more general ArgumentException in your property setter, provided you document it.
Upvotes: 1
Reputation: 14746
The MSDN guidelines for standard exceptions states:
Do use value for the name of the implicit value parameter of property setters.
The following code example shows a property that throws an exception if the caller passes a null argument.
public IPAddress Address { get { return address; } set { if(value == null) { throw new ArgumentNullException("value"); } address = value; } }
Additionally, the MSDN guidelines for property design say:
Avoid throwing exceptions from property getters.
Property getters should be simple operations without any preconditions. If a getter might throw an exception, consider redesigning the property to be a method. This recommendation does not apply to indexers. Indexers can throw exceptions because of invalid arguments.
It is valid and acceptable to throw exceptions from a property setter.
So throw ArgumentNullException
in the setter on null
, and ArgumentException
on the empty string, and do nothing in the getter. Since the setter throws and only you have access to the backing field, it's easy to make sure it won't contain an invalid value. Having the getter throw is then pointless. This might however be a good spot to use Debug.Assert
.
If you really can't provide an appropriate default, then I suppose you have three options:
Just return whatever is in the property and document this behaviour as part of the usage contract. Let the caller deal with it. You might also demand a valid value in the constructor. This might be completely inappropriate for your application though.
Replace the property by methods: A setter method that throws when passed an invalid value, and a getter method that throws InvalidOperationException
when the property was never assigned a valid value.
Throw InvalidOperationException
from the getter, as you could consider 'property has never been assigned' an invalid state. While you shouldn't normally throw from getters, I suppose this might be a good reason to make an exception.
If you choose options 2 or 3, you should also include a TryGet- method that returns a bool
which indicates if the property has been set to a valid value, and if so returns that value in an out
parameter. Otherwise you force callers to be prepared to handle an InvalidOperationException
, unless they have previously set the property themselves and thus know it won't throw. Compare int.Parse
versus int.TryParse
.
I'd suggest using option 2 with the TryGet method. It doesn't violate any guidelines and imposes minimal requirements on the calling code.
About the other suggestions
ApplicationException
is way too general. ArgumentException
is a bit too general for null
, but fine otherwise. MSDN docs again:
Do throw the most specific (the most derived) exception that is appropriate. For example, if a method receives a null (Nothing in Visual Basic) argument, it should throw System.ArgumentNullException instead of its base type System.ArgumentException.
In fact you shouldn't use ApplicationException
at all (docs):
Do derive custom exceptions from the T:System.Exception class rather than the T:System.ApplicationException class.
It was originally thought that custom exceptions should derive from the ApplicationException class; however, this has not been found to add significant value. For more information, see Best Practices for Handling Exceptions.
InvalidOperationException
is intended not for when the arguments to a method or property are invalid, but for when the operation as a whole is invalid (docs). It should not be thrown from the setter:
Do throw a System.InvalidOperationException exception if in an inappropriate state. System.InvalidOperationException should be thrown if a property set or a method call is not appropriate given the object's current state. For example, writing to a System.IO.FileStream that has been opened for reading should throw a System.InvalidOperationException exception.
Incidentally, InvalidOperationException
is for when the operation is invalid for the object's current state. If the operation is always invalid for the entire class, you should use NotSupportedException
.
Upvotes: 74
Reputation: 41858
If it can't be null or empty, have your setter not allow null or empty values, or throw an ArgumentException if that is the case.
Also, require that the property be set in the constructor.
This way you force a valid value, rather than coming back later and saying that that you can't determine account balance as the account isn't set.
But, I would agree with bduke's response.
Upvotes: 2
Reputation: 754665
If the problem is that a member of an argument, and not the argument itself, is null then I think the best choice is the more generic ArgumentException
. ArgumentNullException
does not work here because the argument is in fact not null. Instead you need the more generic "something is wrong with your argument" exception type.
A detailed message for the constructor would be very appropriate here
Upvotes: 4
Reputation: 233150
It is quite appropriate to throw ArgumentNullException if anyone tries to assign null.
A property should never throw on a read operation.
Upvotes: 2
Reputation: 22719
Well, it's not an argument, if you're referencing a property of a class. So, you shouldn't use ArgumentException or ArgumentNullException.
NullReferenceException would happen if you just leave things alone, so I assume that's not what you're looking for.
So, using ApplicationExeption or InvalidOperationException would probably be your best bet, making sure to give a meaningful string to describe the error.
Upvotes: 2
Reputation: 155925
I would throw an InvalidOperationException
. MSDN says it "is thrown when a method call is invalid for the object's current state."
Upvotes: 7
Reputation: 11487
Does the constructor set it to a non-null value? If so I would just throw ArgumentNullException
from the setter.
Upvotes: 1