// typeinfo/pets/Mutt.java // ©2016 MindView LLC: see Copyright.txt package typeinfo.pets; public class Mutt extends Dog { public Mutt(String name) { super(name); } public Mutt() { super(); } }