SRE/02-Easy5/E5/sources/androidx/startup/StartupException.java
2025-03-31 16:33:42 +02:00

17 lines
348 B
Java

package androidx.startup;
/* loaded from: classes.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);
}
}