mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
17 lines
495 B
C#
17 lines
495 B
C#
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace Dalamud.Bootstrap
|
|
{
|
|
/// <summary>
|
|
/// An error that is thrown when there was a problem with bootstraping.
|
|
/// </summary>
|
|
public sealed class BootstrapException : Exception
|
|
{
|
|
internal BootstrapException() : base() { }
|
|
|
|
internal BootstrapException(string message) : base(message) { }
|
|
|
|
internal BootstrapException(string message, Exception innerException) : base(message, innerException) { }
|
|
}
|
|
}
|