FileDocCategorySizeDatePackage
UnsupportedOperationException.javaAPI DocAndroid 1.5 API2626Wed May 06 22:41:04 BST 2009java.lang

UnsupportedOperationException

public class UnsupportedOperationException extends RuntimeException
Thrown when an unsupported operation is attempted.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public UnsupportedOperationException()
Constructs a new {@code UnsupportedOperationException} that includes the current stack trace.

since
Android 1.0


                        
      
        // BEGIN android-added
        super();
        // END android-added
    
public UnsupportedOperationException(String detailMessage)
Constructs a new {@code UnsupportedOperationException} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
public UnsupportedOperationException(String message, Throwable cause)
Constructs a new {@code UnsupportedOperationException} with the current stack trace, the specified detail message and the specified cause.

param
message the detail message for this exception.
param
cause the optional cause of this exception, may be {@code null}.
since
Android 1.0

        super(message, cause);
    
public UnsupportedOperationException(Throwable cause)
Constructs a new {@code UnsupportedOperationException} with the current stack trace and the specified cause.

param
cause the optional cause of this exception, may be {@code null}.
since
Android 1.0

        super((cause == null ? null : cause.toString()), cause);
    
Methods Summary