Is there an analogue to Java IllegalStateException in Python?

IllegalStateException is often used in Java when a method is invoked on an object in inappropriate state. What would you use instead in Python?


Solution 1:

In Python, that would be ValueError, or a subclass of it.

For example, trying to .read() a closed file raises "ValueError: I/O operation on closed file".

Solution 2:

ValueError seems more like the equivalent to Java's IllegalArgumentException.

RuntimeError sounds like a better fit to me:

Raised when an error is detected that doesn’t fall in any of the other categories. The associated value is a string indicating what precisely went wrong.

Most of the time you don't want to do any special error handling on such an error anyway, so the generic RuntimeError should suffice out of the box.

In case you do want to handle it differently to other errors just derive your own exception from it:

class IllegalStateError(RuntimeError):
    pass

Solution 3:

ValueError sounds appropriate to me:

Raised when a built-in operation or function receives an argument that has the right type but an inappropriate value, and the situation is not described by a more precise exception such as IndexError.