duck tape tier quality(TM)

This commit is contained in:
Mino 2020-03-14 14:45:12 +09:00
parent 33145ea0f2
commit c1ed673f22
5 changed files with 44 additions and 32 deletions

View file

@ -0,0 +1,11 @@
using System;
namespace Dalamud.Bootstrap.SqexArg
{
public class SqexArgException : Exception
{
public SqexArgException() { }
public SqexArgException(string message) : base(message) { }
public SqexArgException(string message, Exception inner) : base(message, inner) { }
}
}