package com.facebook.jni;
/* loaded from: classes2.dex */
public class CppSystemErrorException extends CppException {
    int errorCode;

    public int getErrorCode() {
        return this.errorCode;
    }

    public CppSystemErrorException(String str, int i) {
        super(str);
        this.errorCode = i;
    }
}
