blob: c56a8eb9638a0c3ec3728925ab61362685b82e57 [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.bnd.build;
2
3public class CircularDependencyException extends Exception {
Stuart McCulloch4482c702012-06-15 13:27:53 +00004 public CircularDependencyException(String string) {
5 super(string);
6 }
Stuart McCullochf3173222012-06-07 21:57:32 +00007
Stuart McCulloch4482c702012-06-15 13:27:53 +00008 private static final long serialVersionUID = 1L;
Stuart McCullochf3173222012-06-07 21:57:32 +00009
10}