mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
93a0664aff
Summary: * got rid of most of the otp_base jonx ... save that for a future release unfortunately * cleaned up the tutorial server, added -erl to tutorial.thrift's shebang * made better README and TODO Test Plan: checked out a copy, read my directions, built and ran the tutorial, and pretended that it didn't blow git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665273 13f79535-47bb-0310-9956-ffa450edef68
17 lines
619 B
Erlang
17 lines
619 B
Erlang
%%% 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/
|
|
|
|
% 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).
|
|
-define(tApplicationException_HANDLER_ERROR, 6).
|
|
|
|
-record(tApplicationException, {super, type}).
|