Python:如何将基类异常转换为RuntimeError?

时间:2014-08-12 08:15:37

标签: python class exception exception-handling runtimeexception

当我构建一个类时,让我们说Myclass,我通常使用以下方法编写一个类异常:

class MyclassError(Exception):
    pass

如果我想在这堂课中加注RuntimeError怎么办? (将所有MyclassExceptions转换为RuntimeErrors?),如:

class MyclassError(Exception):
    raise RuntimeError(self)

0 个答案:

没有答案