com.github.aidensuen.mongo.exception.RegistryException Maven / Gradle / Ivy
package com.github.aidensuen.mongo.exception;
public class RegistryException extends RuntimeException {
private static final long serialVersionUID = 7317892915497597781L;
public RegistryException() {
}
public RegistryException(String message) {
super(message);
}
public RegistryException(String message, Throwable cause) {
super(message, cause);
}
public RegistryException(Throwable cause) {
super(cause);
}
public RegistryException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}