This repository has been archived on 2023-05-28. You can view files and clone it, but cannot push or open issues/pull-requests.
SkyHook-Unity/Runtime/SkyHookException.cs

17 lines
454 B
C#

using System;
namespace SkyHook
{
/// <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) { }
}
}