package fry;

import java.util.ArrayList;

public class FRYList<E> extends ArrayList<E> {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	public FRYList(){
		super();
	}
	
	
	public E get(int index){
		try{
			return this.get(index);
		} catch (IndexOutOfBoundsException e){
			return null;
		}
	}
	

}
