Ray Milkey
Committed by Gerrit Code Review

Fix typo in path not found exception text

Change-Id: Ia964a60c25eab2372d0d788c13fb1314f1a17279
......@@ -105,7 +105,7 @@ public abstract class ConnectivityIntentCompiler<T extends ConnectivityIntent>
}
}).toList();
if (filtered.isEmpty()) {
throw new PathNotFoundException("No packet path form " + one + " to " + two);
throw new PathNotFoundException("No packet path from " + one + " to " + two);
}
// TODO: let's be more intelligent about this eventually
return filtered.iterator().next();
......