Christopher Piro | 094823a | 2007-07-18 00:26:12 +0000 | [diff] [blame] | 1 | %%% Copyright (c) 2007- Facebook |
| 2 | %%% Distributed under the Thrift Software License |
Christopher Piro | de11d85 | 2007-11-18 02:10:20 +0000 | [diff] [blame] | 3 | %%% |
Christopher Piro | 094823a | 2007-07-18 00:26:12 +0000 | [diff] [blame] | 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). |
Christopher Piro | 5b3a8f7 | 2007-08-01 22:27:37 +0000 | [diff] [blame] | 14 | -define(tApplicationException_HANDLER_ERROR, 6). |
Christopher Piro | 094823a | 2007-07-18 00:26:12 +0000 | [diff] [blame] | 15 | |
Christopher Piro | de11d85 | 2007-11-18 02:10:20 +0000 | [diff] [blame] | 16 | -record(tApplicationException, {super}). |