package com.parse;

/* JADX INFO: loaded from: classes.dex */
public class ParseException extends Exception {
    public int code;

    public ParseException(int i, String str) {
        super(str);
        this.code = i;
    }

    public ParseException(int i, String str, Throwable th) {
        super(str, th);
        this.code = i;
    }

    public ParseException(Throwable th) {
        super(th);
        this.code = -1;
    }
}
