UniVRM/Assets/UniGLTF/Runtime/UniJSON/MsgPack/Exceptions.cs

13 lines
173 B
C#

using System;
namespace UniJSON
{
public class MsgPackTypeException : Exception
{
public MsgPackTypeException(string msg) : base(msg)
{ }
}
}