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

14 lines
487 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.kofax.kmc.kut.utilities.error;
/* loaded from: classes3.dex */
public class IllegalArgumentException extends java.lang.IllegalArgumentException {
private static final long serialVersionUID = 4883984542421554391L;
public IllegalArgumentException(String str) {
super(str);
ErrorInfo errorInfo = ErrorInfo.KMC_GN_ILLEGAL_ARGUMENT_EXCEPTION;
errorInfo.setErrCause(str);
ErrorEventDelegate.postErrorInfoBusEvent(errorInfo, null);
}
}