com.github.andyshao.reflect.NoSuchFieldException 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 NoSuchFieldException extends ReflectiveOperationException {
@Serial
private static final long serialVersionUID = 7486693973906589683L;
/**
* No arg Exception
*/
public NoSuchFieldException() {
}
/**
* With error message
* @param message error message
*/
public NoSuchFieldException(String message) {
super(message);
}
/**
* With error message and previous exception
* @param message error message
* @param exception previous exception
*/
public NoSuchFieldException(String message , Throwable exception) {
super(message , exception);
}
/**
* With previous exception
* @param exception previous exception
*/
public NoSuchFieldException(Throwable exception) {
super(exception);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy