• 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

Application and system Exceptions

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Which one is true?

Client can recover from Application Exception
Client can recover from System Exceptions
 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Client can recover from application exception: Application Exception is something which client expects like AccountOverDrawnException. This is thrown to client by the container as it is. Hence client can recover from it.

Client cannot recover from system exception: System exception is thrown by container as RemoteException. Client neither has any idea why this happened. Only thing over here is client knows over here is something unexpected happened on server side. But he has no clue whatsoever to what that "something" is meant by exactly.

Correct me if I am wrong.
 
reply
    Bookmark Topic Watch Topic
  • New Topic