Suppressing PathNotFound exception
Change-Id: If92b4de390917c56b637abb5bdd42c2f97be507b
Showing
1 changed file
with
2 additions
and
0 deletions
... | @@ -293,6 +293,8 @@ public class IntentManager | ... | @@ -293,6 +293,8 @@ public class IntentManager |
293 | // If all went well, associate the resulting list of installable | 293 | // If all went well, associate the resulting list of installable |
294 | // intents with the top-level intent and proceed to install. | 294 | // intents with the top-level intent and proceed to install. |
295 | update.setInstallables(installables); | 295 | update.setInstallables(installables); |
296 | + } catch (PathNotFoundException e) { | ||
297 | + log.debug("Path not found for intent {}", intent.id()); | ||
296 | } catch (IntentException e) { | 298 | } catch (IntentException e) { |
297 | log.warn("Unable to compile intent {} due to:", intent.id(), e); | 299 | log.warn("Unable to compile intent {} due to:", intent.id(), e); |
298 | 300 | ... | ... |
-
Please register or login to post a comment