001package javax.visrec.util;
002
003/**
004 * The Builder is able to attempt to invoke setter methods of the implemented Builder interface. If the
005 * declared setter method can't be invoked it will throw this exception because the configuration
006 * doesn't match the method to invoke.
007 *
008 * @author Kevin Berendsen
009 */
010public class InvalidBuilderConfigurationException extends RuntimeException {
011
012    InvalidBuilderConfigurationException(String msg, Throwable throwable) {
013        super(msg, throwable);
014    }
015
016}