
com.intellifylearning.IntellifyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intellisense Show documentation
Show all versions of intellisense Show documentation
IntelliSense Sensor API for Java
package com.intellifylearning;
public class IntellifyException extends RuntimeException {
private static final long serialVersionUID = 1L;
public IntellifyException() {}
public IntellifyException(String message) {
super(message);
}
public IntellifyException(Throwable cause) {
super(cause);
}
public IntellifyException(String message, Throwable cause) {
super(message, cause);
}
public IntellifyException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy