mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-05-11 13:04:17 -05:00
18 lines
527 B
C#
18 lines
527 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) { }
|
|
}
|
|
}
|