Initial sync
This commit is contained in:
10
Nbt/Exceptions/NbtException.cs
Executable file
10
Nbt/Exceptions/NbtException.cs
Executable 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) { }
|
||||
}
|
||||
Reference in New Issue
Block a user