what-the-bank/sources/org/spongycastle/crypto/CryptoException.java

12 lines
243 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.spongycastle.crypto;
/* loaded from: classes6.dex */
public class CryptoException extends Exception {
private Throwable b;
@Override // java.lang.Throwable
public Throwable getCause() {
return this.b;
}
}