/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...] |
/dalvik/tests/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...] |
/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...] |
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
compat.py | 82 BaseException = Exception 135 BaseException = java.lang.Exception
|
jython_compat.py | 7 BaseException = Exception 61 BaseException = java.lang.Exception
|
xmltools.py | 28 except BaseException, e:
|
/external/chromium_org/chrome/test/pyautolib/ |
remote_host.py | 84 except BaseException, e:
|
/external/chromium_org/media/tools/constrained_network_server/ |
traffic_control.py | 20 class TrafficControlError(BaseException): 33 BaseException.__init__(self, msg)
|
/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
|
/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
|
/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:
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
cron_servlet.py | 118 except BaseException:
|
/external/skia/tools/ |
svndiff.py | 115 except BaseException as e:
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/ |
message_pool.py | 184 class WorkerException(BaseException):
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
run_webkit_tests.py | 85 except BaseException as e:
|
run_webkit_tests_integrationtest.py | 277 # WorkerExceptions (a subclass of BaseException), which have a string capture of the stack which can 279 self.assertRaises(BaseException, logging_run, 283 self.assertRaises(BaseException, logging_run, [all...] |
/external/chromium_org/third_party/pymock/ |
mock.py | 82 BaseException 85 BaseException = Exception 94 BaseExceptions = (BaseException,) 98 BaseExceptions = (BaseException, java.lang.Throwable) [all...] |