Searched refs:InvalidArgumentException (Results 1 - 25 of 82) sorted by relevance

1234

/external/nist-sip/java/javax/sip/
H A DInvalidArgumentException.java3 public class InvalidArgumentException extends SipException { class in inherits:SipException
4 public InvalidArgumentException() { method in class:InvalidArgumentException
7 public InvalidArgumentException(String message) { method in class:InvalidArgumentException
11 public InvalidArgumentException(String message, Throwable cause) { method in class:InvalidArgumentException
H A DServerTransaction.java7 throws SipException, InvalidArgumentException;
/external/nist-sip/java/javax/sip/header/
H A DTimeStampHeader.java3 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;
H A DMimeVersionHeader.java3 import javax.sip.InvalidArgumentException;
9 void setMajorVersion(int majorVersion) throws InvalidArgumentException;
12 void setMinorVersion(int minorVersion) throws InvalidArgumentException;
H A DRSeqHeader.java3 import javax.sip.InvalidArgumentException;
9 void setSeqNumber(long sequenceNumber) throws InvalidArgumentException;
21 void setSequenceNumber(int sequenceNumber) throws InvalidArgumentException;
H A DContentLengthHeader.java3 import javax.sip.InvalidArgumentException;
9 void setContentLength(int contentLength) throws InvalidArgumentException;
H A DExpiresHeader.java3 import javax.sip.InvalidArgumentException;
9 void setExpires(int expires) throws InvalidArgumentException;
H A DRAckHeader.java4 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;
H A DAcceptEncodingHeader.java3 import javax.sip.InvalidArgumentException;
9 void setQValue(float qValue) throws InvalidArgumentException;
H A DAcceptHeader.java3 import javax.sip.InvalidArgumentException;
12 void setQValue(float qValue) throws InvalidArgumentException;
H A DMaxForwardsHeader.java3 import javax.sip.InvalidArgumentException;
11 void setMaxForwards(int maxForwards) throws InvalidArgumentException;
H A DContactHeader.java3 import javax.sip.InvalidArgumentException;
9 void setExpires(int expires) throws InvalidArgumentException;
12 void setQValue(float qValue) throws InvalidArgumentException;
H A DRetryAfterHeader.java4 import javax.sip.InvalidArgumentException;
15 void setDuration(int duration) throws InvalidArgumentException;
19 void setRetryAfter(int retryAfter) throws InvalidArgumentException;
H A DAcceptLanguageHeader.java4 import javax.sip.InvalidArgumentException;
14 void setQValue(float qValue) throws InvalidArgumentException;
H A DReasonHeader.java4 import javax.sip.InvalidArgumentException;
10 void setCause(int cause) throws InvalidArgumentException;
H A DViaHeader.java4 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/
H A DMimeVersion.java31 import javax.sip.InvalidArgumentException;
92 * @throws InvalidArgumentException
95 throws InvalidArgumentException {
97 throw new InvalidArgumentException(
108 * @throws InvalidArgumentException
111 throws InvalidArgumentException {
113 throw new InvalidArgumentException(
H A DRSeq.java28 import javax.sip.InvalidArgumentException;
70 public void setSeqNumber(long sequenceNumber) throws InvalidArgumentException {
73 throw new InvalidArgumentException(
83 public void setSequenceNumber(int sequenceNumber) throws InvalidArgumentException {
H A DRAck.java31 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);
H A DTimeStamp.java32 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("Valu
[all...]
H A DMaxForwards.java31 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/
H A DSecurityAgreeHeader.java34 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
[all...]
H A DAuthorizationHeaderIms.java34 import javax.sip.InvalidArgumentException;
62 public void setIntegrityProtected(String integrityProtected) throws InvalidArgumentException, ParseException;
H A DPMediaAuthorizationHeader.java33 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/
H A DSessionExpiresHeader.java3 import javax.sip.InvalidArgumentException;
19 public void setExpires(int expires) throws InvalidArgumentException;

Completed in 124 milliseconds

1234