package edu.neu.ccs.demeter.aplib; /** * Thrown when combining two traversals that do not share the same class * graph. */ public class IncompatibleClassGraphsException extends RuntimeException { IncompatibleClassGraphsException(Traversal l, Traversal r) { super(l + ", " + r); } }