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

1 2 3 4 5 6 7 8 91011>>

  /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() {
37 * Constructs a new {@code IllegalStateException} with the current stack
43 public IllegalStateException(String detailMessage) {
48 * Constructs a new {@code IllegalStateException} with the current stack
57 public IllegalStateException(String message, Throwable cause) {
62 * Constructs a new {@code IllegalStateException} with the current stack
69 public IllegalStateException(Throwable cause) {
  /libcore/luni/src/main/java/java/nio/
InvalidMarkException.java 23 public class InvalidMarkException extends IllegalStateException {
  /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/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;
  /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");
  /libcore/luni/src/test/java/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...]
  /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 {
  /libcore/luni/src/main/java/javax/crypto/
KeyAgreementSpi.java 53 * @throws IllegalStateException
57 throws InvalidKeyException, IllegalStateException;
63 * @throws IllegalStateException
67 throws IllegalStateException;
78 * @throws IllegalStateException
84 throws IllegalStateException, ShortBufferException;
93 * @throws IllegalStateException
103 throws IllegalStateException, NoSuchAlgorithmException,
Mac.java 238 * @throws IllegalStateException
241 public final void update(byte input) throws IllegalStateException {
243 throw new IllegalStateException();
258 * @throws IllegalStateException
264 public final void update(byte[] input, int offset, int len) throws IllegalStateException {
266 throw new IllegalStateException();
282 * @throws IllegalStateException
285 public final void update(byte[] input) throws IllegalStateException {
287 throw new IllegalStateException();
301 * @throws IllegalStateException
    [all...]
  /external/apache-http/src/org/apache/http/
HttpResponse.java 96 * @throws IllegalStateException
104 throws IllegalStateException;
114 * @throws IllegalStateException
121 throws IllegalStateException;
  /external/protobuf/java/src/main/java/com/google/protobuf/
Internal.java 78 throw new IllegalStateException(
97 throw new IllegalStateException(
  /frameworks/base/services/java/com/android/server/
NetworkManagementService.java 46 import java.lang.IllegalStateException;
202 throw new IllegalStateException(
215 throw new IllegalStateException(
249 public String[] listInterfaces() throws IllegalStateException {
256 throw new IllegalStateException(
261 public InterfaceConfiguration getInterfaceConfig(String iface) throws IllegalStateException {
266 throw new IllegalStateException(
279 throw new IllegalStateException(
284 throw new IllegalStateException(
305 throw new IllegalStateException(
    [all...]

Completed in 605 milliseconds

1 2 3 4 5 6 7 8 91011>>