mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-10 04:31:43 -05:00
13 lines
173 B
C#
13 lines
173 B
C#
using System;
|
|
|
|
namespace UniJSON
|
|
{
|
|
|
|
public class MsgPackTypeException : Exception
|
|
{
|
|
public MsgPackTypeException(string msg) : base(msg)
|
|
{ }
|
|
|
|
}
|
|
|
|
} |