mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-16 21:07:43 +01:00
duck tape tier quality(TM)
This commit is contained in:
parent
33145ea0f2
commit
c1ed673f22
5 changed files with 44 additions and 32 deletions
17
Dalamud.Bootstrap/BootstrapException.cs
Normal file
17
Dalamud.Bootstrap/BootstrapException.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using System.ComponentModel;
|
||||
|
||||
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) { }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue