feat: add helpful message if CantFindFrameworkResException is thrown

This commit is contained in:
Connor Tumbleson 2021-06-26 07:02:46 -04:00
parent 192f9cb627
commit a6138f3be4
No known key found for this signature in database
GPG Key ID: C3CC0A201EC7DA75
1 changed files with 5 additions and 0 deletions

View File

@ -27,5 +27,10 @@ public class CantFindFrameworkResException extends AndrolibException {
return mPkgId;
}
@Override
public String getMessage() {
return String.format("Can't find framework resources for package of id: %d", this.getPkgId());
}
private final int mPkgId;
}