package edu.neu.ccs.demeter.dj;

/** Thrown when creating an object graph slice from an
    object graph and traversal graph that do not share the same class
    graph. */
public class IncompatibleClassGraphsException extends RuntimeException {
  IncompatibleClassGraphsException(ObjectGraph o, Traversal t) {
    super("Object graph:" + o + "  Traversal: " + t);
  }
}
