Throwing Exception error

Im having problem within a method throwing an IndexOutofBoundsException. I tried a few different things but I still recieve this error:

SortedDoubleList.java:39: cannot find symbol

symbol : class IndexOutofBoundsException

location: class SortedDoubleList

else throw new IndexOutofBoundsException("Index not within parameters.");// it points to the Index in IndexOutOfBounds...

publicvoid ListInsert(int pos,int newItems)

throws IndexOutOfBoundsException, RuntimeException

{

if (numItems >=List_Size)

thrownew RuntimeException("List is full.");

if (pos >=1 && pos <= numItems)

{

for (int i=numItems; i >= pos; i--)

items[i]= items[i-1];

items[pos-1]=newItems;

numItems++;

}

elsethrownew IndexOutofBoundsException("Index not within parameters.");

}

[1503 byte] By [fasttyper87a] at [2007-11-26 21:11:18]
# 1
IOOBE has two capital 'O's - IndexOutOfBoundsException.
pbrockway2a at 2007-7-10 2:48:45 > top of Java-index,Java Essentials,New To Java...
# 2
wow can't believe I missed that one, eyes must be tired =) thanks.
fasttyper87a at 2007-7-10 2:48:46 > top of Java-index,Java Essentials,New To Java...