Are those merely errors in your output window, or are you having the exception thrown at you?
If it is just in the output window you can safely ignore this. Whenever an exception is thrown a message will appear in the output window, even if the calling code handled the exception. Depending on the project this is quite a common technique to deal with parameter validation. Something along the lines of - let's try it and if it fails (Exception is thrown) we go to our default way of dealing with the situation.
So, in summary, having an exception reported is only of concern to you, if it has not been handled.