Home
last modified time | relevance | path

Searched refs:ExplosionException (Results 1 – 2 of 2) sorted by relevance

/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
DFactoryProviderTest.java395 public DefectiveCar() throws ExplosionException { in DefectiveCar()
396 throw new ExplosionException(); in DefectiveCar()
400 public static class ExplosionException extends Exception { } class in FactoryProviderTest
421 Car createCar() throws FireException, ExplosionException; in createCar()
438 } catch (ExplosionException expected) { in testConstructorExceptionsAreThrownByFactory()
444 public MultipleConstructorDefectiveCar() throws ExplosionException { in MultipleConstructorDefectiveCar()
445 throw new ExplosionException(); in MultipleConstructorDefectiveCar()
456 Car createCar() throws ExplosionException; in createCar()
475 } catch (ExplosionException expected) { in testMultipleConstructorExceptionMatching()
DFactoryProvider2Test.java393 public DefectiveCar() throws ExplosionException { in DefectiveCar()
394 throw new ExplosionException(); in DefectiveCar()
398 public static class ExplosionException extends Exception { } class in FactoryProvider2Test
410 Car createCar() throws FireException, ExplosionException; in createCar()
426 } catch (ExplosionException expected) { in testConstructorExceptionsAreThrownByFactory()