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

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

The 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 - 2025 Weber Informatics LLC | Privacy Policy