00001 /* 00002 00003 qutexrlib QT-based XML-RPC library 00004 Copyright (C) 2003 P. Oscar Boykin <boykin@pobox.com> 00005 00006 This program is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU General Public License 00008 as published by the Free Software Foundation; either version 2 00009 of the License, or (at your option) any later version. 00010 00011 This program is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with this program; if not, write to the Free Software 00018 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00019 00020 */ 00021 00022 #ifndef xrfaultcodes 00023 #define xrfaultcodes 00024 00031 #define XR_PARSE_ERROR_NOT_WELL_FORMED -32700 00032 #define XR_PARSE_ERROR_UNSUPPORTED_ENCODING -32701 00033 #define XR_PARSE_ERROR_INVALID_CHAR -32702 00034 #define XR_SERVER_ERROR_INVALID_XMLRPC -32600 00035 #define XR_SERVER_ERROR_METHOD_NOT_FOUND -32601 00036 #define XR_SERVER_ERROR_INVALID_PARAMS -32602 00037 #define XR_SERVER_ERROR_INTERNAL_ERROR -32603 00038 #define XR_APPLICATION_ERROR -32500 00039 #define XR_SYSTEM_ERROR -32400 00040 #define XR_TRANSPORT_ERROR -32300 00041 00042 #endif