KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > frontend > CyclicDependencyException


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 JavaDoc {
10     public CyclicDependencyException() {
11         super();
12     }
13
14     public CyclicDependencyException(String JavaDoc m) {
15         super(m);
16     }
17 }
18
Popular Tags