Package jakarta.mail.internet
Class AddressException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.mail.MessagingException
jakarta.mail.internet.ParseException
jakarta.mail.internet.AddressException
- All Implemented Interfaces:
Serializable
The exception thrown when a wrongly formatted address is encountered.
- Author:
- Bill Shannon, Max Spivak
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionConstructs an AddressException with no detail message.Constructs an AddressException with the specified detail message.AddressException
(String s, String ref) Constructs an AddressException with the specified detail message and reference info.AddressException
(String s, String ref, int pos) Constructs an AddressException with the specified detail message and reference info. -
Method Summary
Modifier and TypeMethodDescriptionint
getPos()
Get the position with the reference string where the error was detected (-1 if not relevant).getRef()
Get the string that was being parsed when the error was detected (null if not relevant).toString()
Override toString method to provide information on nested exceptions.Methods inherited from class jakarta.mail.MessagingException
getCause, getNextException, setNextException
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Field Details
-
ref
The string being parsed. -
pos
protected int posThe index in the string where the error occurred, or -1 if not known.
-
-
Constructor Details
-
AddressException
public AddressException()Constructs an AddressException with no detail message. -
AddressException
Constructs an AddressException with the specified detail message.- Parameters:
s
- the detail message
-
AddressException
Constructs an AddressException with the specified detail message and reference info.- Parameters:
s
- the detail messageref
- the string being parsed
-
AddressException
Constructs an AddressException with the specified detail message and reference info.- Parameters:
s
- the detail messageref
- the string being parsedpos
- the position of the error
-
-
Method Details
-
getRef
Get the string that was being parsed when the error was detected (null if not relevant).- Returns:
- the string that was being parsed
-
getPos
public int getPos()Get the position with the reference string where the error was detected (-1 if not relevant).- Returns:
- the position within the string of the error
-
toString
Description copied from class:MessagingException
Override toString method to provide information on nested exceptions.- Overrides:
toString
in classMessagingException
-