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

com.cookingfox.eventbus.testable.TestableEventBusException Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package com.cookingfox.eventbus.testable;

/**
 * Exception class specific to {@link TestableEventBus}.
 */
public class TestableEventBusException extends RuntimeException {

    public TestableEventBusException(String message) {
        super(message);
    }

    public TestableEventBusException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy