blob: fde2faaf82755b3b8effb34eb27c9bcbe2475243 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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) { }
}
}
|