新增数据包错误提示文件
This commit is contained in:
parent
b147a7ee04
commit
27d77e46e1
@ -30,17 +30,4 @@ namespace PSO2SERVER.Protocol
|
||||
return totalPacket.ToArray(); // 返回整个数据包字节数组
|
||||
}
|
||||
}
|
||||
|
||||
public class PacketError : Exception
|
||||
{
|
||||
public string PacketName { get; }
|
||||
public string FieldName { get; }
|
||||
|
||||
public PacketError(string packetName, string fieldName, Exception innerException)
|
||||
: base($"Error in packet '{packetName}', field '{fieldName}'", innerException)
|
||||
{
|
||||
PacketName = packetName;
|
||||
FieldName = fieldName;
|
||||
}
|
||||
}
|
||||
}
|
76
Server/Protocol/PacketError.cs
Normal file
76
Server/Protocol/PacketError.cs
Normal file
@ -0,0 +1,76 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PSO2SERVER.Protocol
|
||||
{
|
||||
public class PacketError : Exception
|
||||
{
|
||||
public string PacketName { get; }
|
||||
public string FieldName { get; }
|
||||
public long ConstantValue { get; }
|
||||
public Exception InnerError { get; }
|
||||
|
||||
// 构造函数: 读取/写入字段失败
|
||||
public PacketError(string packetName, string fieldName, Exception error)
|
||||
: base($"读取/写入字段 {fieldName} 来自 {packetName} 时发生错误: {error.Message}", error)
|
||||
{
|
||||
PacketName = packetName;
|
||||
FieldName = fieldName;
|
||||
InnerError = error;
|
||||
}
|
||||
|
||||
// 构造函数: 读取/写入标志或枚举值失败
|
||||
public PacketError(string packetName, Exception error)
|
||||
: base($"读取/写入 {packetName} 的值时发生错误: {error.Message}", error)
|
||||
{
|
||||
PacketName = packetName;
|
||||
InnerError = error;
|
||||
}
|
||||
|
||||
// 构造函数: 读取/写入字段长度失败
|
||||
public PacketError(string packetName, string fieldName, Exception error, bool isFieldLengthError)
|
||||
: base($"读取/写入字段 {fieldName} 来自 {packetName} 的长度时发生错误: {error.Message}", error)
|
||||
{
|
||||
PacketName = packetName;
|
||||
FieldName = fieldName;
|
||||
InnerError = error;
|
||||
}
|
||||
|
||||
// 构造函数: 读取/写入组合字段失败
|
||||
public PacketError(string packetName, string fieldName, PacketError innerError)
|
||||
: base($"读取/写入组合字段 {fieldName} 来自 {packetName} 时发生错误: {innerError.Message}", innerError)
|
||||
{
|
||||
PacketName = packetName;
|
||||
FieldName = fieldName;
|
||||
InnerError = innerError;
|
||||
}
|
||||
|
||||
// 构造函数: 填充字段时发生错误
|
||||
public PacketError(string packetName, string fieldName, Exception error, int isPaddingError)
|
||||
: base($"填充字段 {fieldName} 来自 {packetName} 时发生错误: {error.Message}", error)
|
||||
{
|
||||
PacketName = packetName;
|
||||
FieldName = fieldName;
|
||||
InnerError = error;
|
||||
}
|
||||
|
||||
// 构造函数: 读取/写入常量值时发生错误
|
||||
public PacketError(string packetName, long constantValue, Exception error)
|
||||
: base($"读取/写入常量 {constantValue} 来自 {packetName} 时发生错误: {error.Message}", error)
|
||||
{
|
||||
PacketName = packetName;
|
||||
ConstantValue = constantValue;
|
||||
InnerError = error;
|
||||
}
|
||||
|
||||
// 构造函数: 读取/写入数据包长度时发生错误
|
||||
public PacketError(Exception error)
|
||||
: base($"读取/写入数据包长度时发生错误: {error.Message}", error)
|
||||
{
|
||||
InnerError = error;
|
||||
}
|
||||
}
|
||||
}
|
@ -419,6 +419,7 @@
|
||||
<Compile Include="Protocol\Handlers\4A-ARKSMisionsHandler\4A-00-MissionListRequest.cs" />
|
||||
<Compile Include="Protocol\Handlers\4D-ClassicMissionPassHandler\4D-02-MissionPassRequest.cs" />
|
||||
<Compile Include="Protocol\Handlers\4D-ClassicMissionPassHandler\4D-00-MissionPassInfoRequest.cs" />
|
||||
<Compile Include="Protocol\PacketError.cs" />
|
||||
<Compile Include="Protocol\Packets\04-ObjectRelatedPacket\04-75-ActionEndPacket.cs" />
|
||||
<Compile Include="Protocol\Packets\0B-QuestPacket\0B-1B-QuestCategoryStopperPacket.cs" />
|
||||
<Compile Include="Protocol\Packets\0F-ItemPacket\00 - 复制.cs" />
|
||||
|
Loading…
Reference in New Issue
Block a user