tech.pardus.utilities.CheckedException Maven / Gradle / Ivy
/**
*
*/
package tech.pardus.utilities;
/**
* @author deniz.toktay
* @since Aug 20, 2020
*/
public class CheckedException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* @param cause
*/
public CheckedException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy