mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-20 14:57:45 +01:00
Should only BootstrapException be exposed?
This commit is contained in:
parent
666f7df738
commit
6f6792f27e
5 changed files with 6 additions and 6 deletions
|
|
@ -4,9 +4,9 @@ using System.ComponentModel;
|
||||||
namespace Dalamud.Bootstrap
|
namespace Dalamud.Bootstrap
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An error that is thrown when bootstraping Dalamud failed.
|
/// An error that is thrown when there was a problem with bootstraping.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class BootstrapException : Exception
|
public sealed class BootstrapException : Exception
|
||||||
{
|
{
|
||||||
internal BootstrapException() : base() { }
|
internal BootstrapException() : base() { }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ using Dalamud.Bootstrap.SqexArg;
|
||||||
|
|
||||||
namespace Dalamud.Bootstrap
|
namespace Dalamud.Bootstrap
|
||||||
{
|
{
|
||||||
public class Bootstrapper
|
public sealed class Bootstrapper
|
||||||
{
|
{
|
||||||
private readonly BootstrapperOptions m_options;
|
private readonly BootstrapperOptions m_options;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ using System.IO;
|
||||||
|
|
||||||
namespace Dalamud.Bootstrap
|
namespace Dalamud.Bootstrap
|
||||||
{
|
{
|
||||||
public class BootstrapperOptions
|
public sealed class BootstrapperOptions
|
||||||
{
|
{
|
||||||
public static BootstrapperOptions Default => new BootstrapperOptions
|
public static BootstrapperOptions Default => new BootstrapperOptions
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
|
|
||||||
namespace Dalamud.Bootstrap.SqexArg
|
namespace Dalamud.Bootstrap.SqexArg
|
||||||
{
|
{
|
||||||
public class SqexArgException : Exception
|
internal sealed class SqexArgException : Exception
|
||||||
{
|
{
|
||||||
public SqexArgException() { }
|
public SqexArgException() { }
|
||||||
public SqexArgException(string message) : base(message) { }
|
public SqexArgException(string message) : base(message) { }
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ namespace Dalamud.Bootstrap.Windows
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// An exception that is thrown when there was an error while interacting with the process.
|
/// An exception that is thrown when there was an error while interacting with the process.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class ProcessException : Exception
|
internal sealed class ProcessException : Exception
|
||||||
{
|
{
|
||||||
public uint Pid { get; }
|
public uint Pid { get; }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue