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

1 2 3 4 5 6 7 8 91011>>

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/
IllegalStateException.java 25 public class IllegalStateException extends MockFtpServerException {
30 public IllegalStateException(String message) {
37 public IllegalStateException(Throwable cause) {
45 public IllegalStateException(String message, Throwable cause) {
  /external/testng/src/test/java/test/expectedexceptions/
WrappedExpectedExceptionTest.java 9 @ExpectedExceptions({ IllegalStateException.class })
11 throw new IllegalStateException("expected failure");
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ScopingException.java 25 public final class ScopingException extends IllegalStateException {
  /external/vogar/test/vogar/target/junit3/
FailingSuiteTest.java 23 throw new IllegalStateException("Cannot create suite");
FailConstructorTest.java 23 throw new IllegalStateException("Constructor failed");
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Mac.java 37 * @exception IllegalStateException if the MAC is not initialised.
40 throws IllegalStateException;
46 * @exception IllegalStateException if the MAC is not initialised.
50 throws DataLengthException, IllegalStateException;
61 * @exception IllegalStateException if the MAC is not initialised.
64 throws DataLengthException, IllegalStateException;
BlockCipher.java 45 * @exception IllegalStateException if the cipher isn't initialised.
49 throws DataLengthException, IllegalStateException;
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/
Mac.java 39 * @exception IllegalStateException if the MAC is not initialised.
42 throws IllegalStateException;
48 * @exception IllegalStateException if the MAC is not initialised.
52 throws DataLengthException, IllegalStateException;
63 * @exception IllegalStateException if the MAC is not initialised.
66 throws DataLengthException, IllegalStateException;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Assert.java 21 throw new IllegalStateException("failure '" + msg + "'");
24 if (!val) throw new IllegalStateException("assert failed");
27 if (!val) throw new IllegalStateException("assert '" + msg + "' failed");
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Assert.java 17 throw new IllegalStateException("failure '" + msg + "'");
20 if (!val) throw new IllegalStateException("assert failed");
23 if (!val) throw new IllegalStateException("assert '" + msg + "' failed");
  /art/test/689-multi-catch/src/
Main.java 21 } catch (IllegalStateException | NullPointerException e) {
  /external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/b68049457/
StaticInterfaceMethod.java 19 throw new IllegalStateException("can't get here");
  /external/vogar/test/vogar/target/junit4/
FailConstructorTest.java 23 throw new IllegalStateException("Constructor failed");
HasIgnoredTest.java 26 throw new IllegalStateException("This exception should not be thrown because the"
  /art/test/169-threadgroup-jni/src/
Main.java 27 throw new IllegalStateException("Expected runFromNative to be done.");
30 throw new IllegalStateException("Threadgroup should be destroyed.");
  /external/dagger2/core/src/main/java/dagger/internal/
DelegateFactory.java 31 throw new IllegalStateException();
41 throw new IllegalStateException();
  /cts/tests/tests/media/src/android/media/cts/
ParamsTest.java 51 try { fail("got " + p.getAudioAdjustMode()); } catch (IllegalStateException e) {}
52 try { fail("got " + p.getSyncSource()); } catch (IllegalStateException e) {}
53 try { fail("got " + p.getTolerance()); } catch (IllegalStateException e) {}
54 try { fail("got " + p.getFrameRate()); } catch (IllegalStateException e) {}
62 try { fail("got " + p.getFrameRate()); } catch (IllegalStateException e) {}
75 try { fail("got " + p.getSyncSource()); } catch (IllegalStateException e) {}
76 try { fail("got " + p.getTolerance()); } catch (IllegalStateException e) {}
77 try { fail("got " + p.getFrameRate()); } catch (IllegalStateException e) {}
90 try { fail("got " + p.getAudioAdjustMode()); } catch (IllegalStateException e) {}
92 try { fail("got " + p.getTolerance()); } catch (IllegalStateException e) {
    [all...]
  /dalvik/dx/tests/115-merge/testdata/
TryCatchFinally.java 12 } catch (IllegalStateException e) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
DecoderException.java 7 extends IllegalStateException
EncoderException.java 7 extends IllegalStateException
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/
RT.java 28 * @throws IllegalStateException
31 public static IAgent getAgent() throws IllegalStateException {
  /external/jline/src/src/main/java/jline/
CandidateCycleCompletionHandler.java 26 throw new IllegalStateException("CandidateCycleCompletionHandler unimplemented");
  /external/vogar/src/vogar/
Toolchain.java 35 throw new IllegalStateException("No dexer for toolchain " + this);
  /external/volley/src/main/java/com/android/volley/toolbox/
Threads.java 10 throw new IllegalStateException("Must be invoked from the main thread.");
  /cts/tests/app/src/android/app/cts/
FragmentTest.java 30 throw new IllegalStateException("Shouldn't call constructor");
43 // Should get an exception and it shouldn't be an IllegalStateException
44 assertFalse(e instanceof IllegalStateException);

Completed in 1145 milliseconds

1 2 3 4 5 6 7 8 91011>>