DayZ 1.26
DayZ Explorer by KGB
Загрузка...
Поиск...
Не найдено
Файл ErrorModuleHandler.c

См. исходные тексты.

Структуры данных

class  ErrorModuleHandler
 The error handler itself, for managing and distributing errors to modules Manages the ErrorHandlerModule instances inserted in Init. API comes with several functions to Create, Throw and extract data from error codes. The format used is an int which is made up of two shorts, one that holds the category and one that holds the code. Therefore when looking at an error code, it is much easier to identify when looking at the hex value. Подробнее...
 

Перечисления

enum  ErrorCategory {
  Unknown , Generic , ConnectErrorClient , ConnectErrorServer ,
  ConnectErrorScript , ClientKicked , BIOSError
}
 ErrorCategory - To decide what ErrorHandlerModule needs to be called and easily identify where it came from. Подробнее...
 

Перечисления

◆ ErrorCategory

ErrorCategory - To decide what ErrorHandlerModule needs to be called and easily identify where it came from.

Элементы перечислений
Unknown 
Generic 

Generic error group.

ConnectErrorClient 

Error group for when something went wrong while trying to connect to the server.

ConnectErrorServer 

Error group for when the Client did connect to the Server, but the server rejected the connection.

ConnectErrorScript 

Error group for connect errors thrown from Script.

ClientKicked 

Error group for when Client is kicked from server.

BIOSError 

Error group for BIOS errors.

5{
6 Unknown/* = -1*/,
19};
@ ConnectErrorServer
Error group for when the Client did connect to the Server, but the server rejected the connection.
Definition ErrorModuleHandler.c:12
@ ConnectErrorClient
Error group for when something went wrong while trying to connect to the server.
Definition ErrorModuleHandler.c:10
@ Unknown
Definition ErrorModuleHandler.c:6
@ ConnectErrorScript
Error group for connect errors thrown from Script.
Definition ErrorModuleHandler.c:14
@ Generic
Generic error group.
Definition ErrorModuleHandler.c:8
@ BIOSError
Error group for BIOS errors.
Definition ErrorModuleHandler.c:18
@ ClientKicked
Error group for when Client is kicked from server.
Definition ErrorModuleHandler.c:16