Searched refs:parseException (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/
H A DAddressListField.java31 private ParseException parseException; field in class:AddressListField
33 protected AddressListField(String name, String body, String raw, AddressList addressList, ParseException parseException) { argument
36 this.parseException = parseException;
44 return parseException;
52 ParseException parseException = null;
60 parseException = e;
62 return new AddressListField(name, body, raw, addressList, parseException);
H A DDateTimeField.java35 private ParseException parseException; field in class:DateTimeField
37 protected DateTimeField(String name, String body, String raw, Date date, ParseException parseException) { argument
40 this.parseException = parseException;
48 return parseException;
56 ParseException parseException = null;
67 parseException = e;
69 return new DateTimeField(name, body, raw, date, parseException);
H A DMailboxField.java33 private final ParseException parseException; field in class:MailboxField
35 protected MailboxField(final String name, final String body, final String raw, final Mailbox mailbox, final ParseException parseException) { argument
38 this.parseException = parseException;
46 return parseException;
54 ParseException parseException = null;
65 parseException = e;
67 return new MailboxField(name, body, raw, mailbox, parseException);
H A DMailboxListField.java33 private ParseException parseException; field in class:MailboxListField
35 protected MailboxListField(final String name, final String body, final String raw, final MailboxList mailboxList, final ParseException parseException) { argument
38 this.parseException = parseException;
46 return parseException;
54 ParseException parseException = null;
62 parseException = e;
64 return new MailboxListField(name, body, raw, mailboxList, parseException);
H A DContentTypeField.java73 private ParseException parseException; field in class:ContentTypeField
75 protected ContentTypeField(String name, String body, String raw, String mimeType, Map<String, String> parameters, ParseException parseException) { argument
79 this.parseException = parseException;
87 return parseException;
212 ParseException parseException = null;
224 parseException = e;
230 parseException = new ParseException(e.getMessage());
256 return new ContentTypeField(name, body, raw, mimeType, parameters, parseException);

Completed in 147 milliseconds