Not attempting to compare the languages but just for knowledge,
Is there any way to have equivalent of java throws
keyword/functionality in Python?
or the way we can recognize checked exception thrown by any method at static time?
or Passing(chaining) exception handling responsibility?
Java:
public void someMethod() throws SomeException
{
}
Python:
@someDecorator # any way to do?
def someMethod():
pass
If you can't have statically typed arguments, you can't have static throws declarations. For instance, there's no way for me to annotate this function:
Or even this one:
What you can do is make it an error to throw any type of exception other than those specified: