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

1 2

  /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...]
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...]
  /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)
  /external/skia/tools/
svndiff.py 107 except BaseException as e:
  /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/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/
run_webkit_tests.py 88 except BaseException as e:
run_webkit_tests_integrationtest.py 276 # WorkerExceptions (a subclass of BaseException), which have a string capture of the stack which can
278 self.assertRaises(BaseException, logging_run,
282 self.assertRaises(BaseException, logging_run,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
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/
traceback.py 170 if (isinstance(etype, BaseException) or
mailbox.py 274 except BaseException:
745 except BaseException:
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
message_pool.py 187 class WorkerException(BaseException):
  /external/chromium_org/third_party/pymock/
mock.py 82 BaseException
85 BaseException = Exception
94 BaseExceptions = (BaseException,)
98 BaseExceptions = (BaseException, java.lang.Throwable)
    [all...]

Completed in 672 milliseconds

1 2