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 | package Torello.Java;
/**
* This {@code Exception} class is used internally for building {@code Collection}
* instances using the <CODE>java.lang.reflect.*</CODE> package <I>more
* smoothly</I>.
*/
public class VarTypeParamException extends IllegalArgumentException
{
/** <EMBED CLASS='external-html' DATA-FILE-ID=SVUID> */
public static final long serialVersionUID = 1;
VarTypeParamException() { }
/**
* Constructs a new exception with the specified detail message and cause.
* <BR /><BR /><DIV CLASS=JDHint>
* <B STYLE='color:red;'>Note:</B> The detail message associated with cause is not
* automatically incorporated into this exception's detail message.
* </DIV>
* * @param message The detail message (which is saved for later retrieval by the
* {@code Throwable.getMessage()} method).
*
* @param cause the cause (which is saved for later retrieval by the
* {@code Throwable.getCause()} method). (A null value is permitted, and indicates that the
* cause is nonexistent or unknown.)
*/
public VarTypeParamException(String message, Throwable cause)
{
super(message, cause);
}
}
|