public class OtherMain { public static void main(String args[]) { Horse h = new Horse(); try { feed(h); } catch (Exception e) { e.printStackTrace(); } evaluate(h); } static void feed(Animal a) throws Exception{ a.eat(10); } static void evaluate(Asset a) { if (4 > 5) { a.depreciate(.5); } } }