davetron5000 / vimdoclet

Javadoc doclet that generates VIM helpfiles

vimdoclet / sample / java.lang.ClassNotFoundException.txt
100644 95 lines (55 sloc) 3.113 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
*java.lang.ClassNotFoundException* *ClassNotFoundException* Thrown when an appli
 
public class ClassNotFoundException
  extends |java.lang.Exception|
 
|java.lang.ClassNotFoundException_Description|
|java.lang.ClassNotFoundException_Fields|
|java.lang.ClassNotFoundException_Constructors|
|java.lang.ClassNotFoundException_Methods|
 
================================================================================
 
*java.lang.ClassNotFoundException_Constructors*
|java.lang.ClassNotFoundException()|Constructs a ClassNotFoundException with no
|java.lang.ClassNotFoundException(String)|Constructs a ClassNotFoundException w
|java.lang.ClassNotFoundException(String,Throwable)|Constructs a ClassNotFoundE
 
*java.lang.ClassNotFoundException_Methods*
|java.lang.ClassNotFoundException.getCause()|Returns the cause of this exceptio
|java.lang.ClassNotFoundException.getException()|Returns the exception that was
 
*java.lang.ClassNotFoundException_Description*
 
Thrown when an application tries to load in a class through its string name
using:
 
The forName method in class Class. The findSystemClass method in class
ClassLoader . The loadClass method in class ClassLoader.
 
but no definition for the class with the specified name could be found.
 
As of release 1.4, this exception has been retrofitted to conform to the
general purpose exception-chaining mechanism. The "optional exception that was
raised while loading the class" that may be provided at construction time and
accessed via the (|java.lang.ClassNotFoundException|) method is now known as
the cause, and may be accessed via the (|java.lang.Throwable|) method, as well
as the aforementioned "legacy method."
 
 
 
*java.lang.ClassNotFoundException()*
 
public ClassNotFoundException()
 
Constructs a ClassNotFoundException with no detail message.
 
 
*java.lang.ClassNotFoundException(String)*
 
public ClassNotFoundException(java.lang.String s)
 
Constructs a ClassNotFoundException with the specified detail message.
 
    s - the detail message.
 
*java.lang.ClassNotFoundException(String,Throwable)*
 
public ClassNotFoundException(
  java.lang.String s,
  java.lang.Throwable ex)
 
Constructs a ClassNotFoundException with the specified detail message and
optional exception that was raised while loading the class.
 
    s - the detail message
    ex - the exception that was raised while loading the class
 
*java.lang.ClassNotFoundException.getCause()*
 
public |java.lang.Throwable| getCause()
 
Returns the cause of this exception (the exception that was raised if an error
occurred while attempting to load the class; otherwise null).
 
 
 
    Returns: the cause of this exception.
 
*java.lang.ClassNotFoundException.getException()*
 
public |java.lang.Throwable| getException()
 
Returns the exception that was raised if an error occurred while attempting to
load the class. Otherwise, returns null.
 
This method predates the general-purpose exception chaining facility. The
(|java.lang.Throwable|) method is now the preferred means of obtaining this
information.
 
 
 
    Returns: the Exception that was raised while loading a class