Constructors Summary |
---|
public InstantiationException()Constructs a new {@code InstantiationException} that includes the current
stack trace.
super();
|
public InstantiationException(String detailMessage)Constructs a new {@code InstantiationException} with the current stack
trace and the specified detail message.
super(detailMessage);
|
InstantiationException(Class clazz)Constructs a new {@code InstantiationException} with the current stack
trace and the class that caused this exception.
super(clazz.getName());
|