17 lines
285 B
Java
17 lines
285 B
Java
|
package com.facetec.sdk;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class ef extends RuntimeException {
|
||
|
public ef(String str) {
|
||
|
super(str);
|
||
|
}
|
||
|
|
||
|
public ef(String str, Throwable th) {
|
||
|
super(str, th);
|
||
|
}
|
||
|
|
||
|
public ef(Throwable th) {
|
||
|
super(th);
|
||
|
}
|
||
|
}
|