what-the-bank/sources/com/kofax/kmc/kut/utilities/error/IOException.java

17 lines
554 B
Java

package com.kofax.kmc.kut.utilities.error;
/* loaded from: classes3.dex */
public class IOException extends java.io.IOException {
private static final long serialVersionUID = 3648767488252493339L;
public IOException(String str) {
super(str);
ErrorEventDelegate.postErrorInfoBusEvent(ErrorInfo.KMC_GN_IO_EXCEPTION, str);
}
public IOException(java.io.IOException iOException) {
super(iOException);
ErrorEventDelegate.postErrorInfoBusEvent(ErrorInfo.KMC_GN_IO_EXCEPTION, iOException.getMessage());
}
}