HomeSort by relevance Sort by last modified time
    Searched refs:BaseException (Results 1 - 17 of 17) sorted by null

  /art/test/044-proxy/src/
WrappedThrow.java 117 } catch (BaseException se) {
125 class BaseException extends Exception {}
126 class SubException extends BaseException {}
132 public void throwFunky2() throws BaseException,
135 public void throwException() throws BaseException;
136 public void throwBase() throws BaseException;
137 public void throwSub() throws BaseException;
138 public void throwSubSub() throws BaseException;
140 public void bothThrowBase() throws BaseException, SubException, SubSubException;
152 public void bothThrowBase() throws SubException, BaseException, SubSubException
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 207 (BaseException, (), {'message' : '', 'args' : ()}),
208 (BaseException, (1, ), {'message' : 1, 'args' : (1,)}),
209 (BaseException, ('foo',),
211 (BaseException, ('foo', 1),
283 except BaseException, e:
309 # Accessing BaseException.message and relying on its value set by
310 # BaseException.__init__ triggers a deprecation warning.
311 exc = BaseException("foo")
312 with check_warnings(("BaseException.message has been deprecated "
318 # Accessing BaseException.message after explicitly setting a valu
    [all...]
test_pep352.py 10 DEPRECATION_WARNINGS = ["BaseException.message has been deprecated"]
14 ["exceptions must derive from BaseException",
15 "catching classes that don't inherit from BaseException is not allowed",
140 # As of Python 2.6, BaseException.message is deprecated.
142 BaseException().message
200 # BaseException; the ability was not possible until BaseException's
regrtest.py 355 except BaseException, e:
527 except BaseException:
    [all...]
test_sys.py 558 # BaseException
559 check(BaseException(), size('3P'))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 207 (BaseException, (), {'message' : '', 'args' : ()}),
208 (BaseException, (1, ), {'message' : 1, 'args' : (1,)}),
209 (BaseException, ('foo',),
211 (BaseException, ('foo', 1),
283 except BaseException, e:
309 # Accessing BaseException.message and relying on its value set by
310 # BaseException.__init__ triggers a deprecation warning.
311 exc = BaseException("foo")
312 with check_warnings(("BaseException.message has been deprecated "
318 # Accessing BaseException.message after explicitly setting a valu
    [all...]
test_pep352.py 10 DEPRECATION_WARNINGS = ["BaseException.message has been deprecated"]
14 ["exceptions must derive from BaseException",
15 "catching classes that don't inherit from BaseException is not allowed",
140 # As of Python 2.6, BaseException.message is deprecated.
142 BaseException().message
200 # BaseException; the ability was not possible until BaseException's
regrtest.py 355 except BaseException, e:
527 except BaseException:
    [all...]
test_sys.py 558 # BaseException
559 check(BaseException(), size('3P'))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 175 if isinstance(evalue, BaseException):
246 if isinstance(evalue, BaseException):
traceback.py 170 if (isinstance(etype, BaseException) or
mailbox.py 274 except BaseException:
745 except BaseException:
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 175 if isinstance(evalue, BaseException):
246 if isinstance(evalue, BaseException):
traceback.py 170 if (isinstance(etype, BaseException) or
mailbox.py 274 except BaseException:
745 except BaseException:
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 117 except BaseException:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
CallTips.py 117 except BaseException:

Completed in 780 milliseconds