1: // @author Frank M. Carrano, Timothy M. Henry
2: // @version 5.0
3: public void add(int newPosition, T newEntry)
4: {
5: throw new UnsupportedOperationException("Illegal attempt to add " +
6: "at a specified position within a sorted list.");
7: } // end add