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

com.cookingfox.lapasse.api.command.logging.CommandHandlerError Maven / Gradle / Ivy

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

import com.cookingfox.lapasse.api.command.Command;

/**
 * Wraps a command handler error.
 */
public interface CommandHandlerError {

    /**
     * @return The command that was handled.
     */
    Command getCommand();

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy