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

com.legstar.base.visitor.InvalidChoiceAlternativeException Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.legstar.base.visitor;

/**
 * An alternative type does not correspond to a given Choice.
 * 
 */
public class InvalidChoiceAlternativeException extends RuntimeException {

    private static final long serialVersionUID = -3298972488220426263L;

    public InvalidChoiceAlternativeException(String choiceTypeName,
            int alternativeIndex) {
        super("Index " + alternativeIndex
                + " is not a valid alternative index for the " + choiceTypeName
                + " choice");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy