JavaTM 2 Platform
Ent. Ed. v1.4

javax.mail.internet
Class AddressException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjavax.mail.MessagingException
              extended byjavax.mail.internet.ParseException
                  extended byjavax.mail.internet.AddressException
All Implemented Interfaces:
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

Field Summary
protected  int pos
          The index in the string where the error occurred, or -1 if not known.
protected  String ref
          The string being parsed.
 
Constructor Summary
AddressException()
          Constructs an AddressException with no detail message.
AddressException(String s)
          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
 int getPos()
          Get the position with the reference string where the error was detected (-1 if not relevant).
 String getRef()
          Get the string that was being parsed when the error was detected (null if not relevant).
 String toString()
           
 
Methods inherited from class javax.mail.MessagingException
getMessage, getNextException, setNextException
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

ref

protected String ref
The string being parsed.


pos

protected int pos
The index in the string where the error occurred, or -1 if not known.

Constructor Detail

AddressException

public AddressException()
Constructs an AddressException with no detail message.


AddressException

public AddressException(String s)
Constructs an AddressException with the specified detail message.

Parameters:
s - the detail message

AddressException

public AddressException(String s,
                        String ref)
Constructs an AddressException with the specified detail message and reference info.

Parameters:
s - the detail message

AddressException

public AddressException(String s,
                        String ref,
                        int pos)
Constructs an AddressException with the specified detail message and reference info.

Parameters:
s - the detail message
Method Detail

getRef

public String getRef()
Get the string that was being parsed when the error was detected (null if not relevant).


getPos

public int getPos()
Get the position with the reference string where the error was detected (-1 if not relevant).


toString

public String toString()

JavaTM 2 Platform
Ent. Ed. v1.4

Submit a bug or feature

Copyright 2003 Sun Microsystems, Inc. All rights reserved.