mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
15 lines
405 B
Java
15 lines
405 B
Java
package androidx.media3.database;
|
|
|
|
import android.database.SQLException;
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class DatabaseIOException extends IOException {
|
|
public DatabaseIOException(SQLException sQLException) {
|
|
super(sQLException);
|
|
}
|
|
|
|
public DatabaseIOException(SQLException sQLException, String str) {
|
|
super(str, sQLException);
|
|
}
|
|
}
|