class Cat extends Animal { // A Cat "is-a" Animal. /** Constructor * @param nom, the cat's name. */ public Cat( String nom ) { super( nom, "meow" ); // Call the superclass's constructor. } }