Stack kata Implement a Stack class with the following public methods: void push(Object object) Object pop() Stack should throw an exception if popped when empty.