import java.util.*; public class OurStackExample4 { public static void main (String[] argv) { try { OurStack4 stack = new OurStack4 (); stack.pop (); } catch (OurStackException e) { e.printStackTrace (); } } }