![JAR search and dependency download from the Maven repository](/logo.png)
com.github.dreamroute.basic.exception.BasicException Maven / Gradle / Ivy
package com.github.dreamroute.basic.exception;
import java.io.Serializable;
/**
* basic exception
*
* @author w.dehai
*
*/
public class BasicException extends RuntimeException implements Serializable {
/**
*
*/
private static final long serialVersionUID = -3432976754366248710L;
public BasicException(String message) {
super(message);
}
public BasicException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy