- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- jakarta.mail.MessagingException
-
- jakarta.mail.internet.ParseException
-
- jakarta.mail.internet.AddressException
-
- All Implemented Interfaces:
java.io.Serializable
public class AddressException extends ParseException
The exception thrown when a wrongly formatted address is encountered.- Author:
- Bill Shannon, Max Spivak
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AddressException()
Constructs an AddressException with no detail message.AddressException(java.lang.String s)
Constructs an AddressException with the specified detail message.AddressException(java.lang.String s, java.lang.String ref)
Constructs an AddressException with the specified detail message and reference info.AddressException(java.lang.String s, java.lang.String ref, int pos)
Constructs an AddressException with the specified detail message and reference info.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getPos()
Get the position with the reference string where the error was detected (-1 if not relevant).java.lang.String
getRef()
Get the string that was being parsed when the error was detected (null if not relevant).java.lang.String
toString()
Override toString method to provide information on nested exceptions.-
Methods inherited from class jakarta.mail.MessagingException
getCause, getNextException, setNextException
-
-
-
-
Constructor Detail
-
AddressException
public AddressException()
Constructs an AddressException with no detail message.
-
AddressException
public AddressException(java.lang.String s)
Constructs an AddressException with the specified detail message.- Parameters:
s
- the detail message
-
AddressException
public AddressException(java.lang.String s, java.lang.String ref)
Constructs an AddressException with the specified detail message and reference info.- Parameters:
s
- the detail messageref
- the string being parsed
-
AddressException
public AddressException(java.lang.String s, java.lang.String ref, int pos)
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 Detail
-
getRef
public java.lang.String 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
public java.lang.String toString()
Description copied from class:MessagingException
Override toString method to provide information on nested exceptions.- Overrides:
toString
in classMessagingException
-
-