package factory.builder;

public class NoBuilderException extends Exception {
  public NoBuilderException(String msg) {
    super(msg);
  }
}
