HomeSort by relevance Sort by last modified time
    Searched refs:InvalidArgumentException (Results 1 - 25 of 87) sorted by null

1 2 3 4

  /external/nist-sip/java/javax/sip/
InvalidArgumentException.java 3 public class InvalidArgumentException extends SipException {
4 public InvalidArgumentException() {
7 public InvalidArgumentException(String message) {
11 public InvalidArgumentException(String message, Throwable cause) {
ServerTransaction.java 7 throws SipException, InvalidArgumentException;
  /external/nist-sip/java/javax/sip/header/
TimeStampHeader.java 3 import javax.sip.InvalidArgumentException;
9 void setDelay(float delay) throws InvalidArgumentException;
14 void setTime(long timeStamp) throws InvalidArgumentException;
17 void setTimeDelay(int delay) throws InvalidArgumentException;
20 void setTimeStamp(float timeStamp) throws InvalidArgumentException;
MimeVersionHeader.java 3 import javax.sip.InvalidArgumentException;
9 void setMajorVersion(int majorVersion) throws InvalidArgumentException;
12 void setMinorVersion(int minorVersion) throws InvalidArgumentException;
RSeqHeader.java 3 import javax.sip.InvalidArgumentException;
9 void setSeqNumber(long sequenceNumber) throws InvalidArgumentException;
21 void setSequenceNumber(int sequenceNumber) throws InvalidArgumentException;
ContentLengthHeader.java 3 import javax.sip.InvalidArgumentException;
9 void setContentLength(int contentLength) throws InvalidArgumentException;
ExpiresHeader.java 3 import javax.sip.InvalidArgumentException;
9 void setExpires(int expires) throws InvalidArgumentException;
RAckHeader.java 4 import javax.sip.InvalidArgumentException;
13 void setCSequenceNumber(long cSequenceNumber) throws InvalidArgumentException;
16 void setRSequenceNumber(long rSequenceNumber) throws InvalidArgumentException;
27 void setCSeqNumber(int cSeqNumber) throws InvalidArgumentException;
38 void setRSeqNumber(int rSeqNumber) throws InvalidArgumentException;
AcceptEncodingHeader.java 3 import javax.sip.InvalidArgumentException;
9 void setQValue(float qValue) throws InvalidArgumentException;
AcceptHeader.java 3 import javax.sip.InvalidArgumentException;
12 void setQValue(float qValue) throws InvalidArgumentException;
MaxForwardsHeader.java 3 import javax.sip.InvalidArgumentException;
11 void setMaxForwards(int maxForwards) throws InvalidArgumentException;
ContactHeader.java 3 import javax.sip.InvalidArgumentException;
9 void setExpires(int expires) throws InvalidArgumentException;
12 void setQValue(float qValue) throws InvalidArgumentException;
RetryAfterHeader.java 4 import javax.sip.InvalidArgumentException;
15 void setDuration(int duration) throws InvalidArgumentException;
19 void setRetryAfter(int retryAfter) throws InvalidArgumentException;
AcceptLanguageHeader.java 4 import javax.sip.InvalidArgumentException;
14 void setQValue(float qValue) throws InvalidArgumentException;
ReasonHeader.java 4 import javax.sip.InvalidArgumentException;
10 void setCause(int cause) throws InvalidArgumentException;
ViaHeader.java 4 import javax.sip.InvalidArgumentException;
19 void setPort(int port) throws InvalidArgumentException;
28 void setRPort() throws InvalidArgumentException;
34 void setTTL(int ttl) throws InvalidArgumentException;
  /external/nist-sip/java/gov/nist/javax/sip/header/
MimeVersion.java 31 import javax.sip.InvalidArgumentException;
92 * @throws InvalidArgumentException
95 throws InvalidArgumentException {
97 throw new InvalidArgumentException(
108 * @throws InvalidArgumentException
111 throws InvalidArgumentException {
113 throw new InvalidArgumentException(
RSeq.java 28 import javax.sip.InvalidArgumentException;
70 public void setSeqNumber(long sequenceNumber) throws InvalidArgumentException {
73 throw new InvalidArgumentException(
83 public void setSequenceNumber(int sequenceNumber) throws InvalidArgumentException {
RAck.java 31 import javax.sip.InvalidArgumentException;
116 public void setCSeqNumber(int cSeqNumber) throws InvalidArgumentException {
134 throws InvalidArgumentException {
136 throw new InvalidArgumentException("Bad CSeq # " + cSeqNumber);
145 public void setRSeqNumber(int rSeqNumber) throws InvalidArgumentException {
151 throws InvalidArgumentException {
153 throw new InvalidArgumentException("Bad rSeq # " + rSeqNumber);
TimeStamp.java 32 import javax.sip.InvalidArgumentException;
130 public void setTimeStamp(float timeStamp) throws InvalidArgumentException {
132 throw new InvalidArgumentException(
157 * @throws InvalidArgumentException
162 public void setDelay(float delay) throws InvalidArgumentException {
164 throw new InvalidArgumentException(
180 public void setTime(long timeStamp) throws InvalidArgumentException {
182 throw new InvalidArgumentException("Illegal timestamp");
188 public void setTimeDelay(int delay) throws InvalidArgumentException {
190 throw new InvalidArgumentException("Value out of range " + delay)
    [all...]
MaxForwards.java 31 import javax.sip.InvalidArgumentException;
58 public MaxForwards( int m ) throws InvalidArgumentException {
75 throws InvalidArgumentException {
77 throw new InvalidArgumentException(
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
SecurityAgreeHeader.java 34 import javax.sip.InvalidArgumentException;
90 * @throws InvalidArgumentException
92 public void setSPIClient(int spic) throws InvalidArgumentException;
97 * @throws InvalidArgumentException - when value is not valid
99 public void setSPIServer(int spis) throws InvalidArgumentException;
104 * @throws InvalidArgumentException - when value is not valid
106 public void setPortClient(int portC) throws InvalidArgumentException;
112 * @throws InvalidArgumentException - when value is not valid
114 public void setPortServer(int portS) throws InvalidArgumentException;
119 * @throws InvalidArgumentException - when value is not vali
    [all...]
AuthorizationHeaderIms.java 34 import javax.sip.InvalidArgumentException;
62 public void setIntegrityProtected(String integrityProtected) throws InvalidArgumentException, ParseException;
PMediaAuthorizationHeader.java 33 import javax.sip.InvalidArgumentException;
62 * @throws InvalidArgumentException - if token is null or empty
64 public void setMediaAuthorizationToken(String token) throws InvalidArgumentException;
  /external/nist-sip/java/gov/nist/javax/sip/header/extensions/
SessionExpiresHeader.java 3 import javax.sip.InvalidArgumentException;
19 public void setExpires(int expires) throws InvalidArgumentException;

Completed in 110 milliseconds

1 2 3 4