14 lines
487 B
Java
14 lines
487 B
Java
|
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);
|
||
|
}
|
||
|
}
|