Skip to content

Commit

Permalink
Clearly indicate the misconfigured class name in the gradle build mes…
Browse files Browse the repository at this point in the history
…sage.
  • Loading branch information
zhi1ong committed May 27, 2020
1 parent 6909860 commit a4c4629
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ private void parseRoutes(Set<? extends Element> routeElements) throws IOExceptio
logger.info(">>> Found fragment route: " + tm.toString() + " <<<");
routeMeta = new RouteMeta(route, element, RouteType.parse(FRAGMENT), null);
} else {
throw new RuntimeException("ARouter::Compiler >>> Found unsupported class type, type = [" + types.toString() + "].");
throw new RuntimeException("The @Route is marked on unsupported class, look at [" + tm.toString() + "].");
}

categories(routeMeta);
Expand Down

0 comments on commit a4c4629

Please sign in to comment.