/* ************************************************************************ # # DivConq # # http://divconq.com/ # # Copyright: # Copyright 2014 eTimeline, LLC. All rights reserved. # # License: # See the license.txt file in the project's top-level directory for details. # # Authors: # * Andy White # ************************************************************************ */ package divconq.struct.builder; public class BuilderStateException extends Exception { private static final long serialVersionUID = 8226183845157560055L; public BuilderStateException(String msg) { super(msg); } }