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