
com.cookingfox.eventbus.testable.TestableEventBusException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbus-adapter-java Show documentation
Show all versions of eventbus-adapter-java Show documentation
The EventBus Adapter wraps various EventBus implementations for Java and Android.
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