All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sip.PeerUnavailableException Maven / Gradle / Ivy

/**
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 * Unpublished - rights reserved under the Copyright Laws of the United States.
 * Copyright ? 2003 Sun Microsystems, Inc. All rights reserved.
 * Copyright ? 2005 BEA Systems, Inc. All rights reserved.
 *
 * Use is subject to license terms.
 *
 * This distribution may include materials developed by third parties. 
 *
 * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 *
 * Module Name   : JSIP Specification
 * File Name     : PeerUnavailableException.java
 * Author        : Phelim O'Doherty
 *
 *  HISTORY
 *  Version   Date      Author              Comments
 *  1.1     08/10/2002  Phelim O'Doherty    
 *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 */

package javax.sip;

/**
 * The PeerUnavailableException indicates that a vendor's implementation of a 
 * JAIN SIP interface could not be created for some reason.
 *
 * @author BEA Systems, NIST
 * @version 1.2
 */
public class PeerUnavailableException extends SipException {

    /**
     * Constructs a new PeerUnavailableException.
     */
    public PeerUnavailableException() {
        super();
    }

    /**
     * Constructs a new PeerUnavailableException with
     * the specified error message.
     *
     * @param message the error message of this Exception.
     */
    public PeerUnavailableException(String message) {
        super(message);
    }

    /**
    * Constructs a new PeerUnavailableException with the
    * specified error message and specialized cause that triggered this error
    * condition.
    *
    * @param  message the detail of the error message
    * @param  cause  the specialized cause that triggered this exception
    */
    public PeerUnavailableException(String message, Throwable cause) {
        super(message, cause);
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy