FileDocCategorySizeDatePackage
MethodNotSupportedException.javaAPI DocGlassfish v2 API2631Mon May 14 15:28:48 BST 2007javax.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