mirror of
https://github.com/vrm-c/UniVRM.git
synced 2026-03-23 10:54:38 -05:00
16 lines
297 B
C#
16 lines
297 B
C#
using System;
|
|
|
|
|
|
namespace VRM
|
|
{
|
|
class VRMException : Exception
|
|
{
|
|
public VRMException()
|
|
{ }
|
|
public VRMException(string msg) : base(msg)
|
|
{ }
|
|
public VRMException(string msg, params object[] args) : base(string.Format(msg, args))
|
|
{ }
|
|
}
|
|
}
|