XposedFrameworkError no need to be abstract

This commit is contained in:
Nullptr 2023-08-15 22:06:18 +08:00
parent c0ad35ada5
commit 325009e994
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ package io.github.libxposed.api.errors;
/** /**
* Thrown to indicate that the Xposed framework function is broken. * Thrown to indicate that the Xposed framework function is broken.
*/ */
public abstract class XposedFrameworkError extends Error { public class XposedFrameworkError extends Error {
public XposedFrameworkError(String message) { public XposedFrameworkError(String message) {
super(message); super(message);