View Javadoc
1 /* GraphBuildException.java */ 2 package org.quilt.cl; 3 4 /*** 5 * An exception that occurs while building a control flow graph for 6 * a method. 7 * 8 * @author < a href="jddixon@users.sourceforge.net">Jim Dixon</a> 9 */ 10 public class GraphBuildException extends RuntimeException { 11 12 public GraphBuildException() { 13 super(); 14 } 15 16 public GraphBuildException(String msg) { 17 super(msg); 18 } 19 20 public GraphBuildException(String msg, Throwable cause) { 21 super (msg, cause); 22 } 23 24 public GraphBuildException(Throwable cause) { 25 super(cause); 26 } 27 }

This page was automatically generated by Maven