Archived
1
0
Fork 0
This repository has been archived on 2024-05-21. You can view files and clone it, but cannot push or open issues or pull requests.
maki/Maki/DiscordException.cs

20 lines
336 B
C#
Raw Normal View History

2017-05-27 08:48:11 +00:00
using System;
namespace Maki
{
public class DiscordException : Exception
{
public DiscordException() : base()
{
}
public DiscordException(string msg) : base(msg)
{
}
public DiscordException(string msg, Exception inner) : base(msg, inner)
{
}
}
}