package freegraph; /** * Exception used by EquationSolver to indicate that a Solution could not be * found for the equation. */ public class NoSolutionException extends Exception { public NoSolutionException(String msg) { super(msg); } }