foxcord/Foxcord/FoxcordException.cs

6 lines
No EOL
215 B
C#

namespace Foxcord;
/// <summary>
/// Internal errors from Foxcord itself. These generally can't be handled by the library consumer.
/// </summary>
public class FoxcordException(string message) : Exception(message);