![JAR search and dependency download from the Maven repository](/logo.png)
com.github.andyshao.reflect.InstantiationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.reflect;
import java.io.Serial;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Nov 14, 2015
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
*/
public class InstantiationException extends ReflectiveOperationException {
@Serial
private static final long serialVersionUID = -1040253531882507911L;
/**
* No arg construction
*/
public InstantiationException() {
}
/**
* With error message
* @param message error message
*/
public InstantiationException(String message) {
super(message);
}
/**
* With error message and previous exception
* @param message error message
* @param e previous exception
*/
public InstantiationException(String message , Throwable e) {
super(message , e);
}
/**
* With previous exception
* @param e previous exception
*/
public InstantiationException(Throwable e) {
super(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy