com.github.lsqlebai.exception.DigestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of server-common Show documentation
Show all versions of server-common Show documentation
An kotlin server common jar
package com.github.lsqlebai.exception;
public class DigestException extends RuntimeException {
public DigestException() {
}
public DigestException(String message) {
super(message);
}
public DigestException(String message, Throwable cause) {
super(message, cause);
}
public DigestException(Throwable cause) {
super(cause);
}
public DigestException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
// super(message, cause, enableSuppression, writableStackTrace);
// super();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy