13 lines
294 B
Java
13 lines
294 B
Java
|
package com.google.crypto.tink.internal;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public final class TinkBugException extends RuntimeException {
|
||
|
public TinkBugException(String str) {
|
||
|
super(str);
|
||
|
}
|
||
|
|
||
|
public TinkBugException(String str, Throwable th) {
|
||
|
super(str, th);
|
||
|
}
|
||
|
}
|