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

20 lines
362 B
Java

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);
}
}