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

winter.com.ideaaedi.classwinter.exception.JVMException Maven / Gradle / Ivy

The newest version!
package winter.com.ideaaedi.classwinter.exception;


/**
 * JVM异常
 *
 * @author wang
 */
public class JVMException extends ClassWinterException {

    public JVMException() {
    }

    public JVMException(String message) {
        super(message);
    }

    public JVMException(String message, Throwable cause) {
        super(message, cause);
    }

    public JVMException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy