All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.thorbenkuck.keller.event.DeadEventException Maven / Gradle / Ivy

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