mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-11 02:24:36 +01:00
galaxy brain 2: bit of restructure (Bootstrap)
This commit is contained in:
parent
2438a89867
commit
350d2961c1
19 changed files with 345 additions and 136 deletions
21
Dalamud.Bootstrap/Exceptions.cs
Normal file
21
Dalamud.Bootstrap/Exceptions.cs
Normal 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
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue