what-the-bank/sources/org/ejbca/cvc/exception/CvcException.java

20 lines
362 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.ejbca.cvc.exception;
/* loaded from: classes6.dex */
public class CvcException extends Exception {
public CvcException() {
}
public CvcException(String str) {
super(str);
}
public CvcException(Throwable th) {
super(th);
}
public CvcException(String str, Throwable th) {
super(str, th);
}
}