/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/ |
AddressListField.java | 27 import org.apache.james.mime4j.field.address.parser.ParseException;
31 private ParseException parseException;
33 protected AddressListField(String name, String body, String raw, AddressList addressList, ParseException parseException) {
36 this.parseException = parseException;
43 public ParseException getParseException() {
44 return parseException;
52 ParseException parseException = null; [all...] |
DateTimeField.java | 29 import org.apache.james.mime4j.field.datetime.parser.ParseException;
35 private ParseException parseException;
37 protected DateTimeField(String name, String body, String raw, Date date, ParseException parseException) {
40 this.parseException = parseException;
47 public ParseException getParseException() {
48 return parseException;
56 ParseException parseException = null; [all...] |
MailboxField.java | 29 import org.apache.james.mime4j.field.address.parser.ParseException;
33 private final ParseException parseException;
35 protected MailboxField(final String name, final String body, final String raw, final Mailbox mailbox, final ParseException parseException) {
38 this.parseException = parseException;
45 public ParseException getParseException() {
46 return parseException;
54 ParseException parseException = null; [all...] |
MailboxListField.java | 28 import org.apache.james.mime4j.field.address.parser.ParseException;
33 private ParseException parseException;
35 protected MailboxListField(final String name, final String body, final String raw, final MailboxList mailboxList, final ParseException parseException) {
38 this.parseException = parseException;
45 public ParseException getParseException() {
46 return parseException;
54 ParseException parseException = null; [all...] |
ContentTypeField.java | 33 import org.apache.james.mime4j.field.contenttype.parser.ParseException;
73 private ParseException parseException;
75 protected ContentTypeField(String name, String body, String raw, String mimeType, Map<String, String> parameters, ParseException parseException) {
79 this.parseException = parseException;
86 public ParseException getParseException() {
87 return parseException;
212 ParseException parseException = null; [all...] |
/libcore/dom/src/test/java/org/w3c/domts/ |
JAXPDOMTestDocumentBuilderFactory.java | 87 private SAXException parseException; 91 parseException = null; 98 if (parseException == null) { 99 parseException = ex; 108 if (parseException == null) { 109 parseException = ex; 114 return parseException; 120 Exception parseException = null; 127 parseException = errorHandler.getFirstException(); 130 parseException = ex [all...] |
/libcore/luni/src/test/java/tests/api/javax/xml/parsers/ |
DocumentBuilderFactoryTest.java | 376 Exception parseException = null; 387 parseException = errorHandler.getFirstException(); 393 parseException = ex; 397 if (parseException != null) { 398 fail("Unexpected exception " + parseException.getMessage()); 415 parseException = errorHandler.getFirstException(); 423 parseException = ex; 427 if (parseException != null) { 428 fail("Unexpected exception " + parseException.getMessage()); 439 Exception parseException = null [all...] |
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DOMTestCase.java | 23 Exception parseException = null; 28 parseException = errorHandler.getFirstException(); 30 parseException = ex; 33 if (parseException != null) { 34 // fail("Unexpected exception " + parseException.getMessage()); 35 throw new RuntimeException("Unexpected exception " + parseException.getMessage(), parseException); 194 private SAXException parseException; 201 parseException = null; 208 if (parseException == null) [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
TextFormat.java | 519 * throw a {@link ParseException}. 521 public void consume(final String token) throws ParseException { 523 throw parseException("Expected \"" + token + "\"."); 543 * Otherwise, throw a {@link ParseException}. 545 public String consumeIdentifier() throws ParseException { 554 throw parseException("Expected identifier."); 565 * value. Otherwise, throw a {@link ParseException}. 567 public int consumeInt32() throws ParseException { 579 * value. Otherwise, throw a {@link ParseException}. 581 public int consumeUInt32() throws ParseException { [all...] |