Lines Matching refs:BaseException
422 (BaseException, (), {'args' : ()}),
423 (BaseException, (1, ), {'args' : (1,)}),
424 (BaseException, ('foo',),
426 (BaseException, ('foo', 1),
551 for e in [BaseException(1), Exception(2), ValueError(3)]:
583 e = BaseException().with_traceback(tb)
584 self.assertIsInstance(e, BaseException)
660 self.assertRaises(TypeError, BaseException, a=1)
662 class DerivedException(BaseException):
664 BaseException.__init__(self)
1694 except BaseException as e:
2025 except BaseException as E: