All Downloads are FREE. Search and download functionalities are using the official Maven repository.

blade.kit.exception.ClassReaderException Maven / Gradle / Ivy

package blade.kit.exception;

/**
 * 类读取异常
 *
 * @author	biezhi
 * @since	1.0
 */
public class ClassReaderException extends RuntimeException {

	private static final long serialVersionUID = -1L;
	
	public ClassReaderException() {
		super();
	}
	
	public ClassReaderException(Exception e) {
		super(e);
	}
	
	public ClassReaderException(String msg) {
		super(msg);
	}
	
	public ClassReaderException(String msg, Exception e) {
		super(msg, e);
	}
	
	public Throwable fillInStackTrace() {
        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy