what-the-bank/sources/org/bouncycastle/util/io/StreamOverflowException.java

11 lines
232 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.util.io;
import java.io.IOException;
/* loaded from: classes6.dex */
public class StreamOverflowException extends IOException {
public StreamOverflowException(String str) {
super(str);
}
}