Rabbit-R1/android (non root)/java/sources/androidx/startup/StartupException.java

17 lines
349 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package androidx.startup;
/* loaded from: classes2.dex */
public final class StartupException extends RuntimeException {
public StartupException(String str) {
super(str);
}
public StartupException(Throwable th) {
super(th);
}
public StartupException(String str, Throwable th) {
super(str, th);
}
}