Open ulemanstreaming opened 4 years ago
In each case of raise Exception, decide whether a more specific exception, such as ValueErrorException, would work. It is better to convey as much information as possible in the exception itself rather than relying solely on the exception text.
raise Exception
ValueErrorException
I have assigned it to me, I will take a look. Thanks.
In each case of
raise Exception
, decide whether a more specific exception, such asValueErrorException
, would work. It is better to convey as much information as possible in the exception itself rather than relying solely on the exception text.