View Single Post
Old 05-04-2005, 08:16 AM   PM User | #2
shmoove
Regular Coder

 
Join Date: Dec 2003
Posts: 367
Thanks: 0
Thanked 0 Times in 0 Posts
shmoove is an unknown quantity at this point
That's Java's exception handling. If a method is declared to throw an Exception then you must enclose it in a try..catch block and catch the Exception that can be thrown or one of it's superclasses:
Code:
try {
  Thread.sleep(500);
}
catch (Exception e) {}
shmoove
shmoove is offline   Reply With Quote