9 lines
259 B
Java
9 lines
259 B
Java
|
package com.google.android.datatransport.runtime.synchronization;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class SynchronizationException extends RuntimeException {
|
||
|
public SynchronizationException(String str, Throwable th) {
|
||
|
super(str, th);
|
||
|
}
|
||
|
}
|