I'm trying to manually throw an index out of bounds exception for an array. I know that to throw a regular exception, I can do something like:
if(x>array.length){
throw new Exception("Bad choice!");
}
But how can I do the index out of bounds exception?
Thanks
throw new IndexOutOfBoundsException("for index, " + x)? I'm guessing that it would have been quicker for you to have first tried this than post your question on SO. – Hovercraft Full Of Eels Sep 5 '11 at 21:11x>=array.length || x<0– ratchet freak Sep 5 '11 at 21:15