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