1 package polyglot.visit; 2 3 import polyglot.util.InternalCompilerError; 4 import polyglot.util.Position; 5 6 11 public class CFGBuildError extends InternalCompilerError 12 { 13 public CFGBuildError(String msg) { 14 super(msg); 15 } 16 17 public CFGBuildError(Position position, String msg) { 18 super(position, msg); 19 } 20 21 public CFGBuildError(String msg, Position position) { 22 super(msg, position); 23 } 24 } 25 | Popular Tags |