fixed some formatting typos
[vimdoclet.git] / sample / java.lang.UnsupportedOperationException.txt
blob59a02806a9d4e71f4d7dde0289f84725e3954348
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 
24 href="/../technotes/guides/collections/index.html"> Java Collections Framework. 
28 *java.lang.UnsupportedOperationException()*
30 public UnsupportedOperationException()
32 Constructs an UnsupportedOperationException with no detail message. 
35 *java.lang.UnsupportedOperationException(String)*
37 public UnsupportedOperationException(java.lang.String message)
39 Constructs an UnsupportedOperationException with the specified detail message. 
41     message - the detail message 
43 *java.lang.UnsupportedOperationException(String,Throwable)*
45 public UnsupportedOperationException(
46   java.lang.String message,
47   java.lang.Throwable cause)
49 Constructs a new exception with the specified detail message and cause. 
51 Note that the detail message associated with cause is not automatically 
52 incorporated in this exception's detail message. 
54     message - the detail message (which is saved for later retrieval by the {@link 
55        Throwable#getMessage()} method). 
56     cause - the cause (which is saved for later retrieval by the {@link 
57        Throwable#getCause()} method). (A null value is permitted, and indicates 
58        that the cause is nonexistent or unknown.) 
60 *java.lang.UnsupportedOperationException(Throwable)*
62 public UnsupportedOperationException(java.lang.Throwable cause)
64 Constructs a new exception with the specified cause and a detail message of 
65 (cause==null ? null : cause.toString()) (which typically contains the class and 
66 detail message of cause). This constructor is useful for exceptions that are 
67 little more than wrappers for other throwables (for example, 
68 (|java.security.PrivilegedActionException|) ). 
70     cause - the cause (which is saved for later retrieval by the {@link 
71        Throwable#getCause()} method). (A null value is permitted, and indicates 
72        that the cause is nonexistent or unknown.)