mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
11 lines
324 B
C#
11 lines
324 B
C#
using System;
|
|
|
|
namespace Dalamud.Bootstrap.SqexArg
|
|
{
|
|
internal sealed class SqexArgException : Exception
|
|
{
|
|
public SqexArgException() { }
|
|
public SqexArgException(string message) : base(message) { }
|
|
public SqexArgException(string message, Exception inner) : base(message, inner) { }
|
|
}
|
|
}
|