Added UWorld

This commit is contained in:
AeonLucid
2022-01-09 21:21:18 +01:00
parent 29bd62cc9e
commit 49e6e0f6f8
10 changed files with 151 additions and 33 deletions
@@ -0,0 +1,22 @@
using System.Runtime.Serialization;
namespace Prospect.Unreal.Exceptions;
public class UnrealNetException : UnrealException
{
public UnrealNetException()
{
}
protected UnrealNetException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
public UnrealNetException(string? message) : base(message)
{
}
public UnrealNetException(string? message, Exception? innerException) : base(message, innerException)
{
}
}