package com.github.mustachejava;

/* JADX INFO: loaded from: classes.dex */
public class MustacheNotFoundException extends MustacheException {
    private final String name;

    public MustacheNotFoundException(String str) {
        super("Template " + str + " not found");
        this.name = str;
    }

    public MustacheNotFoundException(String str, Throwable th) {
        super("Template " + str + " not found", th);
        this.name = str;
    }

    public String getName() {
        return this.name;
    }
}
