Package javax.mail
Class IllegalWriteException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.mail.MessagingException
-
- javax.mail.IllegalWriteException
-
- All Implemented Interfaces:
java.io.Serializable
public class IllegalWriteException extends MessagingException
The exception thrown when a write is attempted on a read-only attribute of any Messaging object.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description IllegalWriteException()
Constructs an IllegalWriteException with no detail message.IllegalWriteException(java.lang.String s)
Constructs an IllegalWriteException with the specified detail message.IllegalWriteException(java.lang.String s, java.lang.Exception e)
Constructs an IllegalWriteException with the specified detail message and embedded exception.
-
Method Summary
-
Methods inherited from class javax.mail.MessagingException
getCause, getNextException, setNextException, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
IllegalWriteException
public IllegalWriteException()
Constructs an IllegalWriteException with no detail message.
-
IllegalWriteException
public IllegalWriteException(java.lang.String s)
Constructs an IllegalWriteException with the specified detail message.- Parameters:
s
- The detailed error message
-
IllegalWriteException
public IllegalWriteException(java.lang.String s, java.lang.Exception e)
Constructs an IllegalWriteException with the specified detail message and embedded exception. The exception is chained to this exception.- Parameters:
s
- The detailed error messagee
- The embedded exception- Since:
- JavaMail 1.5
-
-