package io.flutter.plugin.common;

/* JADX INFO: loaded from: classes.dex */
public class FlutterException extends RuntimeException {
    public final String code;
    public final Object details;

    public FlutterException(String str, String str2, Object obj) {
        super(str2);
        this.code = str;
        this.details = obj;
    }
}
