java.lang
Class UnsupportedOperationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--java.lang.UnsupportedOperationException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
HeadlessException

public class UnsupportedOperationException
extends RuntimeException

Untamed: Thrown to indicate that the requested operation is not supported.

Since:
1.2
Version:
1.13, 12/03/01
Author:
Josh Bloch
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
serialVersionUID
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
UnsupportedOperationException()
          Enabled: Constructs an UnsupportedOperationException with no detail message.
UnsupportedOperationException(String message)
          Enabled: Constructs an UnsupportedOperationException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnsupportedOperationException

public UnsupportedOperationException()
Enabled: Constructs an UnsupportedOperationException with no detail message.


UnsupportedOperationException

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

Parameters:
message - the detail message


comments?