You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by Apache Wiki <wi...@apache.org> on 2009/09/02 19:03:31 UTC

[Thrift Wiki] Trivial Update of "FAQ" by RobSlifka

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Thrift Wiki" for change notification.

The following page has been changed by RobSlifka:
http://wiki.apache.org/thrift/FAQ

The comment on the change is:
Linking to Brian's comments in bug related to exceptions

------------------------------------------------------------------------------
  Nope.  Method names must be unique.
  
  ===== I'm throwing a TException in my server, why is the client complaining? =====
- Think of TExceptions as runtime exceptions for your Thrift server.  They are uncaught (not unchecked!) exceptions that rise to your server's main loop and terminate the current Thrift call.  If your application uses exceptions, you must create exceptions in your IDL. See the [http://wiki.apache.org/thrift/Tutorial Tutorial] for more information on how to create exceptions.
+ Think of TExceptions as [http://issues.apache.org/jira/browse/THRIFT-517 "unexpected"] exceptions for your Thrift server.  They are uncaught (not unchecked!) exceptions that rise to your server's main loop and terminate the current Thrift call.  If your application uses exceptions, you must create exceptions in your IDL. See the [http://wiki.apache.org/thrift/Tutorial Tutorial] for instructions on create exceptions.