mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
16 lines
349 B
Java
16 lines
349 B
Java
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);
|
|
}
|
|
}
|