Defining a parameterless exception:
class MyException(Exception): pass
When raised, is there any difference between:
ra
Go look at the docs for the raise statement. It's creating an instance of MyException.
MyException