SimpleAppException.java
package space.sunqian.common.app;
import space.sunqian.annotations.Nullable;
import space.sunqian.common.base.exception.FsRuntimeException;
/**
* Exception for {@link SimpleApp}.
*
* @author sunqian
*/
public class SimpleAppException extends FsRuntimeException {
/**
* Empty constructor.
*/
public SimpleAppException() {
super();
}
/**
* Constructs with the message.
*
* @param message the message
*/
public SimpleAppException(@Nullable String message) {
super(message);
}
/**
* Constructs with the message and cause.
*
* @param message the message
* @param cause the cause
*/
public SimpleAppException(@Nullable String message, @Nullable Throwable cause) {
super(message, cause);
}
/**
* Constructs with the cause.
*
* @param cause the cause
*/
public SimpleAppException(@Nullable Throwable cause) {
super(cause);
}
}