2007-07-18 00:26:12 +00:00
|
|
|
%%% Copyright (c) 2007- Facebook
|
|
|
|
%%% Distributed under the Thrift Software License
|
|
|
|
%%%
|
|
|
|
%%% See accompanying file LICENSE or visit the Thrift site at:
|
|
|
|
%%% http://developers.facebook.com/thrift/
|
|
|
|
|
2007-06-29 07:17:33 +00:00
|
|
|
% TApplicationException
|
|
|
|
-define(tApplicationException_UNKNOWN, 0).
|
|
|
|
-define(tApplicationException_UNKNOWN_METHOD, 1).
|
|
|
|
-define(tApplicationException_INVALID_MESSAGE_TYPE, 2).
|
|
|
|
-define(tApplicationException_WRONG_METHOD_NAME, 3).
|
|
|
|
-define(tApplicationException_BAD_SEQUENCE_ID, 4).
|
|
|
|
-define(tApplicationException_MISSING_RESULT, 5).
|
2007-08-01 22:27:37 +00:00
|
|
|
-define(tApplicationException_HANDLER_ERROR, 6).
|
2007-06-29 07:17:33 +00:00
|
|
|
|
2007-07-18 00:26:12 +00:00
|
|
|
-record(tApplicationException, {super, type}).
|