what-the-bank/sources/androidx/startup/StartupException.java

13 lines
261 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);
}
}