jdk/src/share/classes/javax/security/auth/RefreshFailedException.java
changeset 18830 90956ead732f
parent 5506 202f599c92aa
equal deleted inserted replaced
18829:ec84f0c313b0 18830:90956ead732f
     1 /*
     1 /*
     2  * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    24  */
    24  */
    25 
    25 
    26 package javax.security.auth;
    26 package javax.security.auth;
    27 
    27 
    28 /**
    28 /**
    29  * Signals that a <code>refresh</code> operation failed.
    29  * Signals that a {@code refresh} operation failed.
    30  *
    30  *
    31  * <p> This exception is thrown by credentials implementing
    31  * <p> This exception is thrown by credentials implementing
    32  * the <code>Refreshable</code> interface when the <code>refresh</code>
    32  * the {@code Refreshable} interface when the {@code refresh}
    33  * method fails.
    33  * method fails.
    34  *
    34  *
    35  */
    35  */
    36 public class RefreshFailedException extends Exception {
    36 public class RefreshFailedException extends Exception {
    37 
    37