galaxy brain 2: bit of restructure (Bootstrap)

This commit is contained in:
Mino 2020-03-11 11:52:51 +09:00
parent 2438a89867
commit 350d2961c1
19 changed files with 345 additions and 136 deletions

View file

@ -0,0 +1,21 @@
using System;
namespace Dalamud.Bootstrap
{
/// <summary>
/// An error that is thrown when bootstraping Dalamud failed.
/// </summary>
public class BootstrapException : Exception
{
internal BootstrapException() : base() { }
internal BootstrapException(string message) : base(message) { }
internal BootstrapException(string message, Exception innerException) : base(message, innerException) { }
}
public class NtException : BootstrapException
{
}
}