UniVRM/UniJSON/Scripts/MsgPack/Exceptions.cs
ousttrue df85433628 Merge commit 'df5f79584312cf4f6cc7ec1d73a78f6ba475c9ad' as 'UniJSON'
Co-authored-by: Deatrathias <dmailsec@gmail.com>
Co-authored-by: dj-kusuha <dj.kusuha+github@gmail.com>
Co-authored-by: ousttrue <ousttrue@gmail.com>
Co-authored-by: yutopp <yutopp@gmail.com>
2018-12-28 20:38:39 +09:00

13 lines
185 B
C#

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