iaik.utils
Class SmtpException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--iaik.utils.SmtpException

public class SmtpException
extends java.io.IOException

SMTP Exceptions of SMTPmail are derived from here. All internal IOExceptions are caught here as well. Most exceptions are thrown only at the stage of actual sending a mail.

See Also:
Serialized Form

Constructor Summary
SmtpException()
          Construct a new SMTP exception.
SmtpException(java.lang.String msg)
          Constructs an SmtpException with a specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SmtpException

public SmtpException()
Construct a new SMTP exception.

SmtpException

public SmtpException(java.lang.String msg)
Constructs an SmtpException with a specified detail message.
Parameters:
msg - the detail message.