FileDocCategorySizeDatePackage
UnsupportedOperationException.javaAPI DocphoneME MR2 API (J2ME)1652Wed May 02 18:00:46 BST 2007java.lang

UnsupportedOperationException

public class UnsupportedOperationException extends RuntimeException
Thrown to indicate that the requested operation is not supported.
version
1.13, 12/03/01
since
JDK 1.2, JSR 239 1.0

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

    
public UnsupportedOperationException(String message)
Constructs an UnsupportedOperationException with the specified detail message.

param
message the detail message

	super(message);
    
Methods Summary