package stack;

public interface Stack<E> {

	boolean isEmpty();
	
	void push(E element) throws FullStackException;
	
	void pop() throws EmptyStackException;
	
	E peek() throws EmptyStackException;
	
}
