To throw an exception when the stack is full,
the push(Item it) method should behave as follows:
If I am full {
throw an Exception whose message is "stack overflow".
} else {
a. Store it into the entry of myArray whose index is myTop.
b. Add 1 to myTop.
}