com.github.thorbenkuck.keller.event.DeadEventException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of keller-events Show documentation
Show all versions of keller-events Show documentation
Keller is a universal base-package
The newest version!
package com.github.thorbenkuck.keller.event;
public class DeadEventException extends RuntimeException {
DeadEventException() {
}
DeadEventException(String message) {
super(message);
}
DeadEventException(String message, Throwable cause) {
super(message, cause);
}
DeadEventException(Throwable cause) {
super(cause);
}
DeadEventException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy