mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-15 08:44:08 -05:00
android support! thanks to TachiWeb devs.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package android.content.pm;
|
||||
|
||||
public class PackageParser {
|
||||
public static class PackageParserException extends Exception {
|
||||
public final int error;
|
||||
public PackageParserException(int error, String detailMessage) {
|
||||
super(detailMessage);
|
||||
this.error = error;
|
||||
}
|
||||
public PackageParserException(int error, String detailMessage, Throwable throwable) {
|
||||
super(detailMessage, throwable);
|
||||
this.error = error;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user