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

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

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

/**
 * No alternatives exist for a Choice. One of the alternatives must exist.
 * 
 */
public class NoAlternativeForChoiceException extends RuntimeException {

    private static final long serialVersionUID = 6086957263537052911L;

    public NoAlternativeForChoiceException(String choiceTypeName) {
        super("No alternative was found for the " + choiceTypeName + " choice");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy