Home
last modified time | relevance | path

Searched refs:PeerUnavailableException (Results 1 – 4 of 4) sorted by relevance

/external/nist-sip/java/javax/sip/
DSipFactory.java34 throws PeerUnavailableException { in createSipStack()
41 throw new PeerUnavailableException( in createSipStack()
56 throw new PeerUnavailableException( in createSipStack()
65 throws PeerUnavailableException { in createAddressFactory()
69 if (e instanceof PeerUnavailableException) { in createAddressFactory()
70 throw (PeerUnavailableException) e; in createAddressFactory()
72 throw new PeerUnavailableException( in createAddressFactory()
78 public HeaderFactory createHeaderFactory() throws PeerUnavailableException { in createHeaderFactory()
82 if (e instanceof PeerUnavailableException) { in createHeaderFactory()
83 throw (PeerUnavailableException) e; in createHeaderFactory()
[all …]
DPeerUnavailableException.java3 public class PeerUnavailableException extends SipException { class
4 public PeerUnavailableException() { in PeerUnavailableException() method in PeerUnavailableException
7 public PeerUnavailableException(String message) { in PeerUnavailableException() method in PeerUnavailableException
11 public PeerUnavailableException(String message, Throwable cause) { in PeerUnavailableException() method in PeerUnavailableException
/external/nist-sip/java/gov/nist/javax/sip/
DSipStackImpl.java60 import javax.sip.PeerUnavailableException;
533 throws PeerUnavailableException { in SipStackImpl()
547 throw new PeerUnavailableException("bad address " + address); in SipStackImpl()
554 throw new PeerUnavailableException("stack name is missing"); in SipStackImpl()
642 throw new PeerUnavailableException( in SipStackImpl()
647 throw new PeerUnavailableException("Could not instantiate router", in SipStackImpl()
677 throw new PeerUnavailableException("Bad extension method " in SipStackImpl()
722 throw new PeerUnavailableException( in SipStackImpl()
766 throw new PeerUnavailableException( in SipStackImpl()
783 throw new PeerUnavailableException( in SipStackImpl()
/external/nist-sip/java/gov/nist/javax/sip/address/
DSipUri.java42 import javax.sip.PeerUnavailableException;
201 } catch (PeerUnavailableException e) { in equals()