• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

ParseException

 
Ranch Hand
Posts: 113
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.text.ParseException
Does ParseException have a specific situation in which it has to be used or can I use it in any situation where I parse a string looking for pre-determined pattern.
Where can I get more detailed online information on the usage of JAVA APIs. besides here http://java.sun.com/j2se/1.4.1/docs/api/ ?
Thanks in advance
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You may reuse the standard Exceptions anywhere in your code that makes sense. The handling of exceptions has become somewhat of a contentious topic recently, but I'll reuse (some of) the standard exceptions at times.
As far as learning the API, between the API docs and Java Tutorial you should be able to get pretty far along.
Good Luck
Todd Breiholz
 
V Bose
Ranch Hand
Posts: 113
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The resource you mentioned, especially http://java.sun.com/docs/books/tutorial/essential/exceptions/runtime.html
was really helpful...
reply
    Bookmark Topic Watch Topic
  • New Topic