FileDocCategorySizeDatePackage
UnsupportedFlavorException.javaAPI DocJava SE 5 API894Fri Aug 26 14:56:48 BST 2005java.awt.datatransfer

UnsupportedFlavorException

public class UnsupportedFlavorException extends Exception
Signals that the requested data is not supported in this flavor.
see
Transferable#getTransferData
version
1.15, 12/19/03
author
Amy Fowler

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public UnsupportedFlavorException(DataFlavor flavor)
Constructs an UnsupportedFlavorException.

param
flavor the flavor object which caused the exception. May be null.


                                 
       
        super((flavor != null) ? flavor.getHumanPresentableName() : null);
    
Methods Summary