first commit
This commit is contained in:
20
NitroxServer/Serialization/World/VersionMismatchException.cs
Normal file
20
NitroxServer/Serialization/World/VersionMismatchException.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace NitroxServer.Serialization.World
|
||||
{
|
||||
[Serializable]
|
||||
public class VersionMismatchException : Exception
|
||||
{
|
||||
public VersionMismatchException() { }
|
||||
|
||||
public VersionMismatchException(string message) : base(message) { }
|
||||
|
||||
public VersionMismatchException(string message, Exception inner) : base(message, inner) { }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return base.Message;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user