OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ParseException
(Results
1 - 25
of
354
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/apache-http/src/org/apache/http/
ParseException.java
2
* $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/
ParseException
.java $
50
public class
ParseException
extends RuntimeException {
55
* Creates a {@link
ParseException
} without details.
57
public
ParseException
() {
62
* Creates a {@link
ParseException
} with a detail message.
66
public
ParseException
(String message) {
/external/jsilver/src/com/google/streamhtmlparser/
ParseException.java
24
public class
ParseException
extends Exception {
27
* Constructs an {@code
ParseException
} with no detail message.
29
public
ParseException
() {}
32
* Constructs an {@code
ParseException
} with a detail message obtained
37
public
ParseException
(Parser parser, String msg) {
/external/nist-sip/java/javax/sip/header/
MediaType.java
3
import java.text.
ParseException
;
7
void setContentSubType(String contentSubType) throws
ParseException
;
10
void setContentType(String contentType) throws
ParseException
;
AuthenticationInfoHeader.java
3
import java.text.
ParseException
;
9
void setCNonce(String cNonce) throws
ParseException
;
12
void setNextNonce(String nextNonce) throws
ParseException
;
15
void setNonceCount(int nonceCount) throws
ParseException
;
18
void setQop(String qop) throws
ParseException
;
21
void setResponse(String response) throws
ParseException
;
Encoding.java
3
import java.text.
ParseException
;
7
void setEncoding(String encoding) throws
ParseException
;
ExtensionHeader.java
3
import java.text.
ParseException
;
7
void setValue(String value) throws
ParseException
;
OptionTag.java
3
import java.text.
ParseException
;
7
void setOptionTag(String optionTag) throws
ParseException
;
AuthorizationHeader.java
3
import java.text.
ParseException
;
10
void setAlgorithm(String algorithm) throws
ParseException
;
13
void setCNonce(String cNonce) throws
ParseException
;
16
void setNonce(String nonce) throws
ParseException
;
19
void setNonceCount(int nonceCount) throws
ParseException
;
22
void setOpaque(String opaque) throws
ParseException
;
25
void setQop(String qop) throws
ParseException
;
28
void setRealm(String realm) throws
ParseException
;
31
void setResponse(String response) throws
ParseException
;
43
void setUsername(String username) throws
ParseException
;
[
all
...]
AllowEventsHeader.java
3
import java.text.
ParseException
;
9
void setEventType(String eventType) throws
ParseException
;
AllowHeader.java
3
import java.text.
ParseException
;
9
void setMethod(String method) throws
ParseException
;
CallIdHeader.java
3
import java.text.
ParseException
;
9
void setCallId(String callId) throws
ParseException
;
ContentTypeHeader.java
3
import java.text.
ParseException
;
10
throws
ParseException
;
OrganizationHeader.java
3
import java.text.
ParseException
;
9
void setOrganization(String organization) throws
ParseException
;
SIPETagHeader.java
3
import java.text.
ParseException
;
9
void setETag(String etag) throws
ParseException
;
SubjectHeader.java
3
import java.text.
ParseException
;
9
void setSubject(String subject) throws
ParseException
;
ContentDispositionHeader.java
3
import java.text.
ParseException
;
14
void setDispositionType(String dispositionType) throws
ParseException
;
17
void setHandling(String handling) throws
ParseException
;
/dalvik/dx/src/com/android/dx/cf/iface/
ParseException.java
24
public class
ParseException
26
public
ParseException
(String message) {
30
public
ParseException
(Throwable cause) {
34
public
ParseException
(String message, Throwable cause) {
/external/nist-sip/java/javax/sip/address/
AddressFactory.java
3
import java.text.
ParseException
;
7
Address createAddress(String address) throws
ParseException
;
10
throws
ParseException
;
11
SipURI createSipURI(String uri) throws
ParseException
;
12
SipURI createSipURI(String user, String host) throws
ParseException
;
13
TelURL createTelURL(String uri) throws
ParseException
;
14
URI createURI(String uri) throws
ParseException
;
TelURL.java
3
import java.text.
ParseException
;
8
void setIsdnSubAddress(String isdnSubAddress) throws
ParseException
;
11
void setPhoneContext(String phoneContext) throws
ParseException
;
14
void setPhoneNumber(String phoneNumber) throws
ParseException
;
17
void setPostDial(String postDial) throws
ParseException
;
/external/nist-sip/java/gov/nist/javax/sip/header/extensions/
JoinHeader.java
30
import java.text.
ParseException
;
157
* @throws
ParseException
which signals that an error has been reached
160
public void setToTag(String tag) throws
ParseException
;
161
public void setFromTag(String tag) throws
ParseException
;
193
* @throws
ParseException
which signals that an error has been reached
199
public void setCallId(String callId) throws
ParseException
;
ReplacesHeader.java
19
import java.text.
ParseException
;
27
void setToTag(String tag) throws
ParseException
;
29
void setFromTag(String tag) throws
ParseException
;
31
void setCallId(String callId) throws
ParseException
;
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
SecurityClient.java
36
import java.text.
ParseException
;
66
public void setValue(String value) throws
ParseException
68
throw new
ParseException
(value,0);
SecurityServer.java
37
import java.text.
ParseException
;
65
public void setValue(String value) throws
ParseException
67
throw new
ParseException
(value,0);
SecurityVerify.java
37
import java.text.
ParseException
;
66
public void setValue(String value) throws
ParseException
68
throw new
ParseException
(value,0);
/external/nist-sip/java/gov/nist/javax/sip/parser/
ParseExceptionListener.java
31
import java.text.
ParseException
;
59
ParseException
ex,
64
throws
ParseException
;
Completed in 382 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>