historical/toontown-classic.git/panda/include/error_utils.h

88 lines
2.2 KiB
C
Raw Normal View History

2024-01-16 11:20:27 -06:00
/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file error_utils.h
* @author mike
* @date 2000-11-07
*/
#ifndef ERROR_UTILS_H
#define ERROR_UTILS_H
#include "pandabase.h"
#include "typedef.h"
BEGIN_PUBLISH
enum ErrorUtilCode {
EU_http_redirect = 7,
EU_eof = 6,
EU_network_no_data = 5,
EU_write_ram = 4,
EU_write = 3,
EU_ok = 2,
EU_success = 1,
// General errors
EU_error_abort = -1,
EU_error_file_empty = -2,
EU_error_file_invalid = -3,
EU_error_invalid_checksum = -4,
// General network errors
EU_error_network_dead = -30,
EU_error_network_unreachable = -31,
EU_error_network_disconnected = -32,
EU_error_network_timeout = -33,
EU_error_network_no_data = -34,
// Local network errors
EU_error_network_disconnected_locally = -40,
EU_error_network_buffer_overflow = -41,
EU_error_network_disk_quota_exceeded = -42,
// Remote host network errors
EU_error_network_remote_host_disconnected = -50,
EU_error_network_remote_host_down = -51,
EU_error_network_remote_host_unreachable = -52,
EU_error_network_remote_host_not_found = -53,
EU_error_network_remote_host_no_response = -54,
// General local errors
EU_error_write_out_of_files = -60,
EU_error_write_out_of_memory = -61,
EU_error_write_sharing_violation = -62,
EU_error_write_disk_full = -63,
EU_error_write_disk_not_found = -64,
EU_error_write_disk_sector_not_found = -65,
EU_error_write_disk_fault = -66,
EU_error_write_file_rename = -67,
// HTTP errors
EU_error_http_server_timeout = -70,
EU_error_http_gateway_timeout = -71,
EU_error_http_service_unavailable = -72,
EU_error_http_proxy_authentication = -73,
// Zlib errors
EU_error_zlib = -80,
};
EXPCL_PANDA_EXPRESS std::string error_to_text(ErrorUtilCode err);
EXPCL_PANDA_EXPRESS int get_write_error();
#ifdef HAVE_NET
EXPCL_PANDA_EXPRESS std::string handle_socket_error();
EXPCL_PANDA_EXPRESS int get_network_error();
#endif
END_PUBLISH
#endif