Implemented command type readers, parser and service.
This commit is contained in:
20
src/Discord.Net.Commands/CommandError.cs
Normal file
20
src/Discord.Net.Commands/CommandError.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace Discord.Commands
|
||||
{
|
||||
public enum CommandError
|
||||
{
|
||||
//Search
|
||||
UnknownCommand,
|
||||
|
||||
//Parse
|
||||
ParseFailed,
|
||||
BadArgCount,
|
||||
|
||||
//Parse (Type Reader)
|
||||
CastFailed,
|
||||
ObjectNotFound,
|
||||
MultipleMatches,
|
||||
|
||||
//Execute
|
||||
Exception,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user