// 1. Define the StackException exception class
public class StackException extends Exception{
	public StackException(String message){
		super(message);  // Calls Exception's constructor    
      	}
}
