1 package spoon.processing;2 3 /**4 * This exception is thrown when the builder fails to build the meta-model.5 * @see spoon.processing.Builder6 */7 public class BuildingException extends Exception {8 private static final long serialVersionUID = 1L;9 10 /**11 * The constructor.12 * @param message the error message13 */14 public BuildingException(String message) {15 super(message);16 }17 18 }19