FileDocCategorySizeDatePackage
UnsupportedDataTypeException.javaAPI DocGlassfish v2 API2629Mon May 14 15:29:52 BST 2007javax.activation

UnsupportedDataTypeException

public class UnsupportedDataTypeException extends IOException
Signals that the requested operation does not support the requested data type.
see
javax.activation.DataHandler

Fields Summary
Constructors Summary
public UnsupportedDataTypeException()
Constructs an UnsupportedDataTypeException with no detail message.

	super();
    
public UnsupportedDataTypeException(String s)
Constructs an UnsupportedDataTypeException with the specified message.

param
s The detail message.

	super(s);
    
Methods Summary