package com.bytedance.sdk.openadsdk.api.model;

/* JADX INFO: loaded from: classes2.dex */
public class PAGErrorModel {
    private final int fm;
    private final String ro;

    public PAGErrorModel(int i10, String str) {
        this.fm = i10;
        this.ro = str;
    }

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

    public String getErrorMessage() {
        return this.ro;
    }
}
