6 lines
215 B
C#
6 lines
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);
|