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