标签: python class exception exception-handling runtimeexception
当我构建一个类时,让我们说Myclass,我通常使用以下方法编写一个类异常:
Myclass
class MyclassError(Exception): pass
如果我想在这堂课中加注RuntimeError怎么办? (将所有MyclassExceptions转换为RuntimeErrors?),如:
RuntimeError
MyclassExceptions
RuntimeErrors
class MyclassError(Exception): raise RuntimeError(self)