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

org.ggp.base.util.statemachine.exceptions.TransitionDefinitionException Maven / Gradle / Ivy

There is a newer version: 0.0.15
Show newest version
package org.ggp.base.util.statemachine.exceptions;

import java.util.List;

import org.ggp.base.util.statemachine.MachineState;
import org.ggp.base.util.statemachine.Move;


@SuppressWarnings("serial")
public final class TransitionDefinitionException extends Exception
{

    private final List moves;
    private final MachineState state;

    public TransitionDefinitionException(MachineState state, List moves)
    {
        this.state = state;
        this.moves = moves;
    }

    public List getMoves()
    {
        return moves;
    }

    public MachineState getState()
    {
        return state;
    }

    @Override
    public String toString()
    {
        return "Transition is poorly defined for " + moves + " in " + state;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy