UniVRM/Core/Scripts/UniGLTFException.cs
ousttrue 2a19c831f8 Squashed 'UniGLTF/' content from commit 690847a
git-subtree-dir: UniGLTF
git-subtree-split: 690847a1a5a0bd3df55187e1f1cb6f338c09225b
2018-12-28 19:53:19 +09:00

18 lines
544 B
C#

using System;
namespace UniGLTF
{
public class UniGLTFException : Exception
{
public UniGLTFException(string fmt, params object[] args) : this(string.Format(fmt, args)) { }
public UniGLTFException(string msg) : base(msg) { }
}
public class UniGLTFNotSupportedException : UniGLTFException
{
public UniGLTFNotSupportedException(string fmt, params object[] args) : this(string.Format(fmt, args)) { }
public UniGLTFNotSupportedException(string msg) : base(msg) { }
}
}