Should only BootstrapException be exposed?

This commit is contained in:
Mino 2020-03-28 18:05:36 +09:00
parent 666f7df738
commit 6f6792f27e
5 changed files with 6 additions and 6 deletions

View file

@ -4,9 +4,9 @@ using System.ComponentModel;
namespace Dalamud.Bootstrap
{
/// <summary>
/// An error that is thrown when bootstraping Dalamud failed.
/// An error that is thrown when there was a problem with bootstraping.
/// </summary>
public class BootstrapException : Exception
public sealed class BootstrapException : Exception
{
internal BootstrapException() : base() { }