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

1 2 3 4 5 6 7 8 91011>>

  /external/android-mock/tests/com/google/android/testing/mocking/
ClassDoesWorkInConstructor.java 39 throw new IllegalStateException("I wasn't mocked!!");
43 throw new IllegalStateException("I wasn't mocked!!");
47 throw new IllegalStateException("I wasn't mocked!!");
51 throw new IllegalStateException("I wasn't mocked!!");
55 throw new IllegalStateException("I wasn't mocked!!");
59 throw new IllegalStateException("I wasn't mocked!!");
63 throw new IllegalStateException("I wasn't mocked!!");
67 throw new IllegalStateException("I wasn't mocked!!");
71 throw new IllegalStateException("I wasn't mocked!!");
75 throw new IllegalStateException("I wasn't mocked!!")
    [all...]
  /libcore/luni/src/main/java/java/lang/
IllegalStateException.java 24 public class IllegalStateException extends RuntimeException {
29 * Constructs a new {@code IllegalStateException} that includes the current
32 public IllegalStateException() {
36 * Constructs a new {@code IllegalStateException} with the current stack
42 public IllegalStateException(String detailMessage) {
47 * Constructs a new {@code IllegalStateException} with the current stack
56 public IllegalStateException(String message, Throwable cause) {
61 * Constructs a new {@code IllegalStateException} with the current stack
68 public IllegalStateException(Throwable cause) {
  /libcore/luni/src/main/java/java/nio/channels/
AlreadyConnectedException.java 23 public class AlreadyConnectedException extends IllegalStateException {
CancelledKeyException.java 23 public class CancelledKeyException extends IllegalStateException {
ClosedSelectorException.java 23 public class ClosedSelectorException extends IllegalStateException {
ConnectionPendingException.java 24 public class ConnectionPendingException extends IllegalStateException {
IllegalBlockingModeException.java 24 public class IllegalBlockingModeException extends IllegalStateException {
NoConnectionPendingException.java 26 public class NoConnectionPendingException extends IllegalStateException {
NonReadableChannelException.java 23 public class NonReadableChannelException extends IllegalStateException {
NonWritableChannelException.java 23 public class NonWritableChannelException extends IllegalStateException {
NotYetBoundException.java 23 public class NotYetBoundException extends IllegalStateException {
NotYetConnectedException.java 23 public class NotYetConnectedException extends IllegalStateException {
OverlappingFileLockException.java 23 public class OverlappingFileLockException extends IllegalStateException {
  /libcore/xml/src/main/java/org/xmlpull/v1/
XmlSerializer.java 21 * <li><em>IllegalStateException</em> - to signal that call has good arguments but
30 * In such case IllegalStateException will be thrown and it is recommended
44 * then IllegalStateException MUST be thrown.
46 * @exception IllegalStateException If the feature is not supported or can not be set
50 throws IllegalArgumentException, IllegalStateException;
72 * then IllegalStateException MUST be thrown.
74 * @exception IllegalStateException if the property is not supported or can not be set
78 throws IllegalArgumentException, IllegalStateException;
95 throws IOException, IllegalArgumentException, IllegalStateException;
102 throws IOException, IllegalArgumentException, IllegalStateException;
    [all...]
  /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;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
AbstractFsObject.java 76 * {@code IllegalStateException} if it is not.
78 * @throws IllegalStateException if this object was invalidated
83 protected final void checkValid() throws IllegalStateException {
84 if (!isValid()) throw new IllegalStateException(
92 * @throws IllegalStateException if this object was invalidated
98 throws IllegalStateException, ReadOnlyException {
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractEmptyIterator.java 66 throw new IllegalStateException("Iterator contains no elements");
70 throw new IllegalStateException("Iterator contains no elements");
74 throw new IllegalStateException("Iterator contains no elements");
78 throw new IllegalStateException("Iterator contains no elements");
82 throw new IllegalStateException("Iterator contains no elements");
  /frameworks/base/core/java/android/content/
CursorEntityIterator.java 60 throw new IllegalStateException("calling hasNext() when the iterator is closed");
77 throw new IllegalStateException("calling next() when the iterator is closed");
80 throw new IllegalStateException("you may only call next() if hasNext() is true");
96 throw new IllegalStateException("calling reset() when the iterator is closed");
107 throw new IllegalStateException("closing when already closed");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
IllegalStateExceptionTest.java 27 * @tests java.lang.IllegalStateException#IllegalStateException()
30 IllegalStateException e = new IllegalStateException();
37 * @tests java.lang.IllegalStateException#IllegalStateException(java.lang.String)
40 IllegalStateException e = new IllegalStateException("fixture");
46 * @tests {@link java.land.IllegalStateException#IllIllegalStateException(java.lang.Throwable)}
50 IllegalStateException emptyException = new IllegalStateException(emptyThrowable)
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/
DummyInput.java 50 throw new IllegalStateException("Input already initialized.");
57 throw new IllegalStateException("Input not initialized.");
62 throw new IllegalStateException("Input not initialized.");
DummyKeyInput.java 47 throw new IllegalStateException("Input not initialized.");
  /libcore/luni/src/main/java/java/nio/
InvalidMarkException.java 23 public class InvalidMarkException extends IllegalStateException {
  /libcore/luni/src/main/java/java/util/
FormatterClosedException.java 27 public class FormatterClosedException extends IllegalStateException implements
  /libcore/luni/src/main/java/java/util/concurrent/
CancellationException.java 17 public class CancellationException extends IllegalStateException {
  /dalvik/dx/tests/115-merge/testdata/
TryCatchFinally.java 12 } catch (IllegalStateException e) {

Completed in 1216 milliseconds

1 2 3 4 5 6 7 8 91011>>