foxcord/Foxcord/FoxcordException.cs

6 lines
215 B
C#
Raw Normal View History

2024-07-02 01:14:46 +02:00
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);