Java javax.mail MessagingException fields, constructors, methods, implement or subclass

Example usage for Java javax.mail MessagingException fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.mail MessagingException.

The text is from its open source code.

Constructor

MessagingException(String s)
Constructs a MessagingException with the specified detail message.
MessagingException(String s, Exception e)
Constructs a MessagingException with the specified Exception and detail message.
MessagingException()
Constructs a MessagingException with no detail message.

Method

ThrowablegetCause()
Overrides the getCause method of Throwable to return the next exception in the chain of nested exceptions.
ClassgetClass()
Returns the runtime class of this Object .
StringgetLocalizedMessage()
Creates a localized description of this throwable.
StringgetMessage()
Returns the detail message string of this throwable.
ExceptiongetNextException()
Get the next exception chained to this one.
StackTraceElement[]getStackTrace()
Provides programmatic access to the stack trace information printed by #printStackTrace() .
voidprintStackTrace()
Prints this throwable and its backtrace to the standard error stream.
voidprintStackTrace(PrintStream s)
Prints this throwable and its backtrace to the specified print stream.
StringtoString()
Override toString method to provide information on nested exceptions.