This repository has been archived on 2023-05-28. You can view files and clone it, but cannot push or open issues/pull-requests.
2022-11-03 20:55:22 +09:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace SkyHook
|
|
|
|
{
|
2022-11-06 22:16:34 +09:00
|
|
|
/// <summary>
|
|
|
|
/// An <see cref="Exception"/> that specifically occurred in SkyHook.
|
|
|
|
/// </summary>
|
|
|
|
public class SkyHookException : Exception
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Initializes an instance of <see cref="SkyHookException"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="message">A message to pass along with exception.</param>
|
|
|
|
public SkyHookException(string message) : base(message) { }
|
|
|
|
}
|
2022-11-06 22:47:16 +09:00
|
|
|
}
|