Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javax.mail.internet
Class AddressException  view AddressException download AddressException.java

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:
java.io.Serializable

public class AddressException
extends ParseException

Version:
$Rev: 54266 $ $Date: 2004-10-10 14:02:50 -0700 (Sun, 10 Oct 2004) $

Nested Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
protected  int pos
           
protected  java.lang.String ref
           
 
Fields inherited from class javax.mail.MessagingException
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
AddressException()
           
AddressException(java.lang.String message)
           
AddressException(java.lang.String message, java.lang.String ref)
           
AddressException(java.lang.String message, java.lang.String ref, int pos)
           
 
Method Summary
 int getPos()
           
 java.lang.String getRef()
           
 java.lang.String toString()
          Get a human-readable representation of this Throwable.
 
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

pos

protected int pos

ref

protected java.lang.String ref
Constructor Detail

AddressException

public AddressException()

AddressException

public AddressException(java.lang.String message)

AddressException

public AddressException(java.lang.String message,
                        java.lang.String ref)

AddressException

public AddressException(java.lang.String message,
                        java.lang.String ref,
                        int pos)
Method Detail

getRef

public java.lang.String getRef()

getPos

public int getPos()

toString

public java.lang.String toString()
Description copied from class: java.lang.Throwable
Get a human-readable representation of this Throwable. The detail message is retrieved by getLocalizedMessage(). Then, with a null detail message, this string is simply the object's class name; otherwise the string is getClass().getName() + ": " + message.