HomeSort by relevance Sort by last modified time
    Searched refs:IllegalStateException (Results 1 - 25 of 2699) 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) {
  /libcore/ojluni/src/main/java/java/lang/
IllegalStateException.java 38 class IllegalStateException extends RuntimeException {
40 * Constructs an IllegalStateException with no detail message.
43 public IllegalStateException() {
48 * Constructs an IllegalStateException with the specified detail
54 public IllegalStateException(String s) {
74 public IllegalStateException(String message, Throwable cause) {
92 public IllegalStateException(Throwable cause) {
  /frameworks/base/media/java/android/media/
MediaDrmResetException.java 24 public class MediaDrmResetException extends IllegalStateException {
  /libcore/ojluni/src/main/java/java/nio/
InvalidMarkException.java 41 extends IllegalStateException {
  /libcore/ojluni/src/main/java/java/nio/channels/
AlreadyBoundException.java 41 extends IllegalStateException
AlreadyConnectedException.java 41 extends IllegalStateException
CancelledKeyException.java 41 extends IllegalStateException
ClosedSelectorException.java 41 extends IllegalStateException
ConnectionPendingException.java 42 extends IllegalStateException
IllegalBlockingModeException.java 41 extends IllegalStateException
NoConnectionPendingException.java 42 extends IllegalStateException
NonReadableChannelException.java 41 extends IllegalStateException
NonWritableChannelException.java 41 extends IllegalStateException
NotYetBoundException.java 41 extends IllegalStateException
NotYetConnectedException.java 41 extends IllegalStateException
OverlappingFileLockException.java 43 extends IllegalStateException
  /libcore/ojluni/src/main/java/java/util/
FormatterClosedException.java 37 public class FormatterClosedException 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/testng/src/test/java/test/expectedexceptions/
WrappedExpectedExceptionTest.java 9 @ExpectedExceptions({ IllegalStateException.class })
11 throw new IllegalStateException("expected failure");
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/nan/
WifiNanHalMock.java 35 throw new IllegalStateException("Please mock this class!");
39 throw new IllegalStateException("Please mock this class!");
43 throw new IllegalStateException("Please mock this class!");
47 throw new IllegalStateException("Please mock this class!");
51 throw new IllegalStateException("Please mock this class!");
55 throw new IllegalStateException("Please mock this class!");
59 throw new IllegalStateException("Please mock this class!");
63 throw new IllegalStateException("Please mock this class!");
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ScopingException.java 25 public final class ScopingException extends IllegalStateException {
  /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;
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Assert.java 19 throw new IllegalStateException("failure '" + msg + "'");
22 if (!val) throw new IllegalStateException("assert failed");
25 if (!val) throw new IllegalStateException("assert '" + msg + "' failed");
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Assert.java 15 throw new IllegalStateException("failure '" + msg + "'");
18 if (!val) throw new IllegalStateException("assert failed");
21 if (!val) throw new IllegalStateException("assert '" + msg + "' failed");
  /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 {

Completed in 1061 milliseconds

1 2 3 4 5 6 7 8 91011>>