MethodNotSupportedExceptionpublic class MethodNotSupportedException extends MessagingException The exception thrown when a method is not supported by the
implementation |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public MethodNotSupportedException()Constructs a MethodNotSupportedException with no detail message.
super();
| public MethodNotSupportedException(String s)Constructs a MethodNotSupportedException with the specified detail message.
super(s);
|
|