Home
last modified time | relevance | path

Searched refs:SipException (Results 1 – 25 of 29) sorted by relevance

12

/external/nist-sip/java/javax/sip/
DDialog.java63 Request createRequest(String method) throws SipException; in createRequest()
64 Request createAck(long cseq) throws InvalidArgumentException, SipException; in createAck()
66 throws DialogDoesNotExistException, SipException; in createPrack()
68 throws InvalidArgumentException, SipException; in createReliableProvisionalResponse()
72 throws TransactionDoesNotExistException, SipException; in sendRequest()
73 void sendAck(Request ackRequest) throws SipException; in sendAck()
75 throws SipException; in sendReliableProvisionalResponse()
79 void terminateOnBye(boolean terminateFlag) throws SipException; in terminateOnBye()
DSipException.java3 public class SipException extends Exception { class
4 public SipException() { in SipException() method in SipException
7 public SipException(String message) { in SipException() method in SipException
11 public SipException(String message, Throwable cause) { in SipException() method in SipException
DClientTransaction.java12 Request createAck() throws SipException; in createAck()
14 Request createCancel() throws SipException; in createCancel()
15 void sendRequest() throws SipException; in sendRequest()
DSipProvider.java41 Dialog getNewDialog(Transaction transaction) throws SipException; in getNewDialog()
48 void sendRequest(Request request) throws SipException; in sendRequest()
49 void sendResponse(Response response) throws SipException; in sendResponse()
DServerTransaction.java7 throws SipException, InvalidArgumentException; in sendResponse()
9 void enableRetransmissionAlerts() throws SipException; in enableRetransmissionAlerts()
DInvalidArgumentException.java3 public class InvalidArgumentException extends SipException {
DDialogDoesNotExistException.java3 public class DialogDoesNotExistException extends SipException {
DPeerUnavailableException.java3 public class PeerUnavailableException extends SipException {
DObjectInUseException.java3 public class ObjectInUseException extends SipException {
DTransactionAlreadyExistsException.java3 public class TransactionAlreadyExistsException extends SipException {
DTransactionDoesNotExistException.java3 public class TransactionDoesNotExistException extends SipException {
DProviderDoesNotExistException.java3 public class ProviderDoesNotExistException extends SipException {
DTransactionUnavailableException.java3 public class TransactionUnavailableException extends SipException {
DTransportNotSupportedException.java3 public class TransportNotSupportedException extends SipException {
DSipStack.java38 void start() throws ProviderDoesNotExistException, SipException; in start()
/external/nist-sip/java/gov/nist/javax/sip/stack/
DSIPClientTransaction.java58 import javax.sip.SipException;
748 } catch (SipException ex) { in inviteClientTransaction()
887 public void sendRequest() throws SipException { in sendRequest()
891 throw new SipException("Request already sent"); in sendRequest()
902 throw new SipException(ex.getMessage()); in sendRequest()
933 throw new SipException("Could not find original tx to cancel. RFC 3261 9.1"); in sendRequest()
935 throw new SipException( in sendRequest()
938 throw new SipException("Cannot cancel non-invite requests RFC 3261 9.1"); in sendRequest()
949 throw new SipException( in sendRequest()
961 throw new SipException ("Failed to take ACK semaphore"); in sendRequest()
[all …]
DSIPDialog.java86 import javax.sip.SipException;
933 throws SipException { in sendAck()
939 throw new SipException("Bad request method -- should be ACK"); in sendAck()
945 throw new SipException("Bad dialog state " + this.getState()); in sendAck()
955 throw new SipException("Bad call ID in request"); in sendAck()
970 throw new SipException(ex.getMessage()); in sendAck()
976 throw new SipException("No route!"); in sendAck()
983 throw new SipException("No listening point for this provider registered at " in sendAck()
1009 throw new SipException("Could not send ack", ex); in sendAck()
1011 } catch (SipException ex) { in sendAck()
[all …]
DSIPServerTransaction.java52 import javax.sip.SipException;
1233 public void sendResponse(Response response) throws SipException { in sendResponse()
1243 throw new SipException(ex.getMessage()); in sendResponse()
1248 throw new SipException( in sendResponse()
1260 throw new SipException("Expires header is mandatory in 2xx response of SUBSCRIBE"); in sendResponse()
1270 throw new SipException( in sendResponse()
1281 throw new SipException("Contact Header is mandatory for the OK to the INVITE"); in sendResponse()
1284 throw new SipException("Response does not belong to this transaction."); in sendResponse()
1308 throw new SipException("cannot send response -- unacked povisional"); in sendResponse()
1337 throw new SipException("Tag mismatch dialogTag is " in sendResponse()
[all …]
DDefaultRouter.java161 public Hop getNextHop(Request request) throws SipException { in getNextHop()
214 throw new SipException("First Route not a SIP URI"); in getNextHop()
340 } catch (SipException ex) { in getNextHops()
/external/nist-sip/java/gov/nist/javax/sip/
DSipProviderImpl.java66 import javax.sip.SipException;
350 } catch (SipException ex) { in getNewClientTransaction()
665 public void sendRequest(Request request) throws SipException { in sendRequest()
667 throw new SipException("Stack is stopped."); in sendRequest()
684 throw new SipException("could not determine next hop!"); in sendRequest()
689 throw new SipException("Invalid SipRequest -- no via header!"); in sendRequest()
713 throw new SipException( in sendRequest()
722 throw new SipException( in sendRequest()
740 public void sendResponse(Response response) throws SipException { in sendResponse()
742 throw new SipException("Stack is stopped"); in sendResponse()
[all …]
DDialogFilter.java61 import javax.sip.SipException;
589 } catch (SipException e) { in processRequest()
662 } catch (SipException ex) { in processRequest()
756 } catch (SipException ex) { in processRequest()
1202 } catch (SipException ex) { in processResponse()
1407 } catch (SipException ex) { in processResponse()
/external/nist-sip/java/javax/sip/message/
DMessage.java6 import javax.sip.SipException;
16 void addFirst(Header header) throws SipException, NullPointerException; in addFirst()
18 void addLast(Header header) throws SipException, NullPointerException; in addLast()
/external/nist-sip/java/javax/sip/address/
DRouter.java4 import javax.sip.SipException;
8 Hop getNextHop(Request request) throws SipException; in getNextHop()
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
DAuthenticationHelper.java8 import javax.sip.SipException;
57 SipProvider transactionCreator, int cacheTime ) throws SipException, in handleChallenge()
DAuthenticationHelperImpl.java35 import javax.sip.SipException;
127 throws SipException, NullPointerException { in handleChallenge()
203 throw new SipException("Invalid CSeq -- could not increment : " in handleChallenge()
244 throw new SipException( in handleChallenge()
271 } catch (SipException ex) { in handleChallenge()
275 throw new SipException("Unexpected exception ", ex); in handleChallenge()

12