View Single Post
  #5 (permalink)  
Old 09-01-2008, 07:15 AM
Fubarable's Avatar
Fubarable Fubarable is offline
Senior Member
 
Join Date: Jun 2008
Posts: 1,268
Fubarable is on a distinguished road
Your error message is missing its head, the text on the top that states what kind of error message is being thrown. I'm going to guess that it's an UnsupportedOperationException and it's being thrown because your code is telling java to throw it. What would you expect a method such as this to do:
Code:
private double inStock() { throw new UnsupportedOperationException("Not yet implemented"); }
?
Reply With Quote