Class ParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.james.mime4j.MimeException
-
- org.apache.james.mime4j.dom.field.ParseException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ParseException
,ParseException
,ParseException
,ParseException
,ParseException
,ParseException
,ParseException
public class ParseException extends MimeException
This exception is thrown when parse errors are encountered.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Modifier Constructor Description protected
ParseException(java.lang.String message)
Constructs a new parse exception with the specified detail message.protected
ParseException(java.lang.String message, java.lang.Throwable cause)
Constructs a new parse exception with the specified detail message and cause.protected
ParseException(java.lang.Throwable cause)
Constructs a new parse exception with the specified cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ParseException
protected ParseException(java.lang.String message)
Constructs a new parse exception with the specified detail message.- Parameters:
message
- detail message
-
ParseException
protected ParseException(java.lang.Throwable cause)
Constructs a new parse exception with the specified cause.- Parameters:
cause
- the cause
-
ParseException
protected ParseException(java.lang.String message, java.lang.Throwable cause)
Constructs a new parse exception with the specified detail message and cause.- Parameters:
message
- detail messagecause
- the cause
-
-