1
0

Initial sync

This commit is contained in:
2024-03-15 14:44:21 +01:00
commit d2a1cabe35
59 changed files with 3783 additions and 0 deletions

10
Nbt/Exceptions/NbtException.cs Executable file
View File

@@ -0,0 +1,10 @@
namespace Nbt;
public class NbtException : Exception
{
public NbtException() { }
public NbtException(string? message) : base(message) { }
public NbtException(string? message, Exception? innerException) : base(message, innerException) { }
}