13 lines
299 B
Java
13 lines
299 B
Java
package io.fabric.sdk.android;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class InitializationException extends RuntimeException {
|
|
public InitializationException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public InitializationException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
}
|