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

  /art/test/088-monitor-verification/src/
MyException.java 17 public class MyException extends RuntimeException {
18 public MyException() {
21 public MyException(String msg) {
Main.java 34 } catch (MyException me) {}
80 throw new MyException();
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractLinkedIteratorTest.java 95 } catch (MyException expected) {
100 } catch (MyException expected) {
126 throw new MyException();
131 private static class MyException extends RuntimeException {}
  /external/chromium_org/v8/test/mjsunit/
value-of.js 28 function MyException() { }
31 o.valueOf = function() { throw new MyException(); }
33 assertThrows(function() { o + 1 }, MyException);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
SerializationStressTest1.java 275 private static class MyException extends java.io.IOException {
297 throw new MyException();
305 private static class MyException extends java.io.IOException {
323 throw new MyException();
344 private static class MyException extends java.io.IOException {
361 throw new MyException();
    [all...]
ObjectOutputStreamTest.java 307 private static class MyException extends java.io.IOException {
325 throw new MyException();
340 private static class MyException extends java.io.IOException {
359 throw new MyException();
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 435 # Bug #2542: if issubclass(e, MyException) raises an exception,
441 class MyException(Exception):
448 except MyException, e:
449 self.fail("exception should not be a MyException")
469 class MyException(Exception):
474 raise MyException
test_fileio.py 459 class MyException(Exception): pass
463 raise MyException("blocked setting name")
466 self.assertRaises(MyException, MyFileIO, fd)
test_descr.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 435 # Bug #2542: if issubclass(e, MyException) raises an exception,
441 class MyException(Exception):
448 except MyException, e:
449 self.fail("exception should not be a MyException")
469 class MyException(Exception):
474 raise MyException
test_fileio.py 459 class MyException(Exception): pass
463 raise MyException("blocked setting name")
466 self.assertRaises(MyException, MyFileIO, fd)
test_descr.py     [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTest.java 125 private static class MyException extends Exception {}
128 CheckedFuture<String, MyException> future = Futures.immediateCheckedFuture(
137 CheckedFuture<String, MyException> future1 = Futures.immediateCheckedFuture(
139 CheckedFuture<String, MyException> future2 = Futures.immediateCheckedFuture(
150 MyException exception = new MyException();
151 CheckedFuture<String, MyException> future =
164 fail("This call was supposed to throw an MyException");
165 } catch (MyException expected) {
    [all...]
  /external/lldb/test/unittest2/test/
test_case.py 14 class MyException(Exception):
204 def runTest(self): raise MyException()
215 def runTest(self): raise MyException()
226 def runTest(self): raise MyException()
    [all...]

Completed in 731 milliseconds