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

com.cookingfox.lapasse.api.event.logging.EventHandlerError Maven / Gradle / Ivy

There is a newer version: 0.5.6
Show newest version
package com.cookingfox.lapasse.api.event.logging;

import com.cookingfox.lapasse.api.event.Event;

/**
 * Wraps the event handler error.
 */
public interface EventHandlerError {

    /**
     * @return TThe error that occurred.
     */
    Throwable getError();

    /**
     * @return The event that was handled.
     */
    Event getEvent();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy