Christopher Piro | 094823a | 2007-07-18 00:26:12 +0000 | [diff] [blame^] | 1 | %%% Copyright (c) 2007- Facebook |
| 2 | %%% Distributed under the Thrift Software License |
| 3 | %%% |
| 4 | %%% See accompanying file LICENSE or visit the Thrift site at: |
| 5 | %%% http://developers.facebook.com/thrift/ |
| 6 | |
| 7 | % TApplicationException |
| 8 | -define(tApplicationException_UNKNOWN, 0). |
| 9 | -define(tApplicationException_UNKNOWN_METHOD, 1). |
| 10 | -define(tApplicationException_INVALID_MESSAGE_TYPE, 2). |
| 11 | -define(tApplicationException_WRONG_METHOD_NAME, 3). |
| 12 | -define(tApplicationException_BAD_SEQUENCE_ID, 4). |
| 13 | -define(tApplicationException_MISSING_RESULT, 5). |
| 14 | |
| 15 | -record(tApplicationException, {super, type}). |