HomeSort by relevance Sort by last modified time
    Searched refs:RefreshFailedException (Results 1 - 5 of 5) sorted by null

  /external/smack/src/org/apache/harmony/javax/security/auth/
RefreshFailedException.java 20 public class RefreshFailedException extends Exception {
24 public RefreshFailedException() {
28 public RefreshFailedException(String message) {
Refreshable.java 22 void refresh() throws RefreshFailedException;
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/
RefreshFailedExceptionTest.java 24 import javax.security.auth.RefreshFailedException;
29 * Tests RefreshFailedException class
34 * @tests javax.security.auth.RefreshFailedException#RefreshFailedException()
37 assertNull(new RefreshFailedException().getMessage());
41 * @tests javax.security.auth.RefreshFailedException#RefreshFailedException(
45 assertNull(new RefreshFailedException(null).getMessage());
48 assertSame(message, new RefreshFailedException(message).getMessage());
51 assertSame(message, new RefreshFailedException(message).getMessage())
    [all...]
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/serialization/
RefreshFailedExceptionTest.java 25 import javax.security.auth.RefreshFailedException;
31 * Serialization test for RefreshFailedException class
38 return new Object[] {new RefreshFailedException("message")};
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/auth/kerberos/
KerberosTicketTest.java 27 import javax.security.auth.RefreshFailedException;
465 fail("No expected RefreshFailedException");
466 } catch (RefreshFailedException e) {
481 fail("No expected RefreshFailedException");
482 } catch (RefreshFailedException e) {
506 fail("No expected RefreshFailedException");
507 } catch (RefreshFailedException e) {
516 fail("No expected RefreshFailedException");
517 } catch (RefreshFailedException e) {

Completed in 429 milliseconds