Improved build.xml
[vimdoclet.git] / sample / java.lang.UnsupportedOperationException.txt
blob938491a8ae9227d4ab6963ba9c0612ecda4b1e78
1 *java.lang.UnsupportedOperationException* *UnsupportedOperationException* Thrown
3 public class UnsupportedOperationException
4   extends    |java.lang.RuntimeException|
6 |java.lang.UnsupportedOperationException_Description|
7 |java.lang.UnsupportedOperationException_Fields|
8 |java.lang.UnsupportedOperationException_Constructors|
9 |java.lang.UnsupportedOperationException_Methods|
11 ================================================================================
13 *java.lang.UnsupportedOperationException_Constructors*
14 |java.lang.UnsupportedOperationException()|Constructs an UnsupportedOperationEx
15 |java.lang.UnsupportedOperationException(String)|Constructs an UnsupportedOpera
16 |java.lang.UnsupportedOperationException(String,Throwable)|Constructs a new exc
17 |java.lang.UnsupportedOperationException(Throwable)|Constructs a new exception 
19 *java.lang.UnsupportedOperationException_Description*
21 Thrown to indicate that the requested operation is not supported. 
23 This class is a member of the <a href="/../guide/collections/index.html"> Java 
24 Collections Framework. 
27 *java.lang.UnsupportedOperationException()*
29 public UnsupportedOperationException()
31 Constructs an UnsupportedOperationException with no detail message. 
34 *java.lang.UnsupportedOperationException(String)*
36 public UnsupportedOperationException(java.lang.String message)
38 Constructs an UnsupportedOperationException with the specified detail message. 
40     message - the detail message 
42 *java.lang.UnsupportedOperationException(String,Throwable)*
44 public UnsupportedOperationException(
45   java.lang.String message,
46   java.lang.Throwable cause)
48 Constructs a new exception with the specified detail message and cause. 
50 Note that the detail message associated with cause is not automatically 
51 incorporated in this exception's detail message. 
53     message - the detail message (which is saved for later retrieval by the {@link 
54        Throwable#getMessage()} method). 
55     cause - the cause (which is saved for later retrieval by the {@link 
56        Throwable#getCause()} method). (A null value is permitted, and indicates 
57        that the cause is nonexistent or unknown.) 
59 *java.lang.UnsupportedOperationException(Throwable)*
61 public UnsupportedOperationException(java.lang.Throwable cause)
63 Constructs a new exception with the specified cause and a detail message of 
64 (cause==null ? null : cause.toString()) (which typically contains the class and 
65 detail message of cause). This constructor is useful for exceptions that are 
66 little more than wrappers for other throwables (for example, 
67 (|java.security.PrivilegedActionException|) ). 
69     cause - the cause (which is saved for later retrieval by the {@link 
70        Throwable#getCause()} method). (A null value is permitted, and indicates 
71        that the cause is nonexistent or unknown.)