KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > spoon > processing > BuildingException


1 package spoon.processing;
2
3 /**
4  * This exception is thrown when the builder fails to build the meta-model.
5  * @see spoon.processing.Builder
6  */

7 public class BuildingException extends Exception JavaDoc {
8     private static final long serialVersionUID = 1L;
9
10     /**
11      * The constructor.
12      * @param message the error message
13      */

14     public BuildingException(String JavaDoc message) {
15         super(message);
16     }
17
18 }
19
Popular Tags