1 package polyglot.frontend; 2 3 import java.util.*; 4 5 /** 6 * Thrown during when the compiler tries to run a pass that is 7 * already running. 8 */ 9 public class CyclicDependencyException extends Exception { 10 public CyclicDependencyException() { 11 super(); 12 } 13 14 public CyclicDependencyException(String m) { 15 super(m); 16 } 17 } 18