Searched refs:ParseException (Results 51 - 75 of 341) sorted by relevance

1234567891011>>

/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPAccessNetworkInfoHeader.java34 import java.text.ParseException;
97 public void setAccessType(String accessTypeVal) throws ParseException;
101 public void setCGI3GPP(String cgi) throws ParseException;
105 public void setUtranCellID3GPP(String utranCellID) throws ParseException;
109 public void setDSLLocation(String dslLocation) throws ParseException;
113 public void setCI3GPP2(String ci2Gpp2) throws ParseException;
117 public void setExtensionAccessInfo(Object extendAccessInfo) throws ParseException;
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
H A DReferencesHeader.java4 import java.text.ParseException;
30 public void setCallId(String callId) throws ParseException;
34 public void setRel (String rel) throws ParseException;
H A DJoin.java5 import java.text.ParseException;
120 public void setToTag(String t) throws ParseException {
124 throw new ParseException("bad tag", 0);
152 public void setFromTag(String t) throws ParseException {
156 throw new ParseException("bad tag", 0);
174 public void setValue(String value) throws ParseException {
176 throw new ParseException(value,0);
H A DReplaces.java5 import java.text.ParseException;
120 public void setToTag(String t) throws ParseException {
124 throw new ParseException("bad tag", 0);
152 public void setFromTag(String t) throws ParseException {
156 throw new ParseException("bad tag", 0);
174 public void setValue(String value) throws ParseException {
176 throw new ParseException(value,0);
/external/nist-sip/java/javax/sip/header/
H A DSubscriptionStateHeader.java3 import java.text.ParseException;
22 void setReasonCode(String reasonCode) throws ParseException;
28 void setState(String state) throws ParseException;
H A DRAckHeader.java3 import java.text.ParseException;
10 void setMethod(String method) throws ParseException;
/external/nist-sip/java/javax/sip/message/
H A DMessageFactory.java3 import java.text.ParseException;
19 Object content) throws ParseException;
24 byte[] content) throws ParseException;
28 MaxForwardsHeader maxForwards) throws ParseException;
30 Request createRequest(String request) throws ParseException;
35 Object content) throws ParseException;
40 byte[] content) throws ParseException;
44 MaxForwardsHeader maxForwards) throws ParseException;
48 throws ParseException;
52 throws ParseException;
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DWarning.java31 import java.text.ParseException;
128 * @throws ParseException if host is not accepted by implementation
130 public void setAgent(String host) throws ParseException {
141 * @throws ParseException if text is not accepted by implementation
143 public void setText(String text) throws ParseException {
145 throw new ParseException(
H A DAllow.java29 import java.text.ParseException;
76 public void setMethod(String method) throws ParseException {
H A DAllowEvents.java31 import java.text.ParseException;
74 * @throws ParseException which signals that an error has been reached
77 public void setEventType(String eventType) throws ParseException {
H A DContentEncoding.java31 import java.text.ParseException;
129 public void setEncoding(String encoding) throws ParseException {
H A DOrganization.java32 import java.text.ParseException;
85 public void setOrganization(String o) throws ParseException {
H A DProxyRequire.java31 import java.text.ParseException;
84 * @throws ParseException which signals that an error has been reached
87 public void setOptionTag(String optionTag) throws ParseException {
H A DRequire.java32 import java.text.ParseException;
82 * @throws ParseException which signals that an error has been reached
85 public void setOptionTag(String optionTag) throws ParseException {
H A DSubject.java34 import java.text.ParseException;
81 * @throws ParseException which signals that an error has been reached
84 public void setSubject(String subject) throws ParseException {
H A DUnsupported.java31 import java.text.ParseException;
87 public void setOptionTag(String o) throws ParseException {
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DChallengeParser.java30 import java.text.ParseException;
66 throws ParseException {
83 * @throws ParseException if the message does not respect the spec.
85 public void parse(AuthenticationHeader header) throws ParseException {
105 } catch (ParseException ex) {
H A DAuthorizationParser.java29 import java.text.ParseException;
64 public SIPHeader parse() throws ParseException {
H A DParser.java31 import java.text.ParseException;
44 protected ParseException createParseException(String exceptionString) {
45 return new ParseException(
54 protected String sipVersion() throws ParseException {
76 protected String method() throws ParseException {
108 * @throws ParseException - if there are invalid characters
112 public static final void checkToken( String token ) throws ParseException {
115 throw new ParseException("null or empty token", -1 );
120 throw new ParseException( "Invalid character(s) in string (not allowed in 'token')", i );
H A DProxyAuthenticateParser.java29 import java.text.ParseException;
61 * @throws ParseException if the message does not respect the spec.
63 public SIPHeader parse() throws ParseException {
71 public static void main(String args[]) throws ParseException {
H A DProxyAuthorizationParser.java29 import java.text.ParseException;
62 * @throws ParseException if the message does not respect the spec.
64 public SIPHeader parse() throws ParseException {
73 public static void main(String args[]) throws ParseException {
H A DWWWAuthenticateParser.java27 import java.text.ParseException;
63 public SIPHeader parse() throws ParseException {
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DSIPDuplicateHeaderException.java32 import java.text.ParseException;
45 public class SIPDuplicateHeaderException extends ParseException {
/external/nist-sip/java/javax/sip/address/
H A DAddress.java4 import java.text.ParseException;
8 void setDisplayName(String displayName) throws ParseException;
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DAddressFactoryImpl.java30 import java.text.ParseException;
71 * @throws ParseException which signals that an error has been reached
93 throws ParseException {
100 } catch (ParseException ex) {
102 throw new ParseException(ex.getMessage(), 0);
113 throws ParseException {
135 } catch (ParseException ex) {
136 throw new ParseException(ex.getMessage(), 0);
148 throws ParseException {
156 } catch (ParseException e
[all...]

Completed in 273 milliseconds

1234567891011>>