com.jyroscope.SystemException Maven / Gradle / Ivy
package com.jyroscope;
public class SystemException extends Exception {
public SystemException(String message) {
super(message);
}
public SystemException(Throwable cause) {
super(cause);
}
public SystemException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy