FileDocCategorySizeDatePackage
MethodNotSupportedException.javaAPI DocJavaMail 1.4.32570Tue Nov 17 10:38:12 GMT 2009javax.mail

MethodNotSupportedException

public class MethodNotSupportedException extends MessagingException
The exception thrown when a method is not supported by the implementation
author
John Mani

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.

param
s the detail message

	super(s);
    
Methods Summary