Description for java.lang.IllegalStateException from the Java docs:

Signals that a method has been invoked at an illegal or inappropriate time. In other words, the Java environment or Java application is not in an appropriate state for the requested operation.

Is there an equivalent for IllegalStateException in the .NET-Framework?

link|improve this question

feedback

1 Answer

up vote 13 down vote accepted

System.InvalidOperationException

The exception that is thrown when a method call is invalid for the object's current state.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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