/** * Runtime exception thrown when one tries to push an element onto * a stack that is already full and can't be expanded for some reason. */ public class StackFullException extends RuntimeException { public StackFullException(String err) { super(err); } }