24 lines
370 B
C#
24 lines
370 B
C#
namespace Discord.Commands
|
|
{
|
|
public enum CommandError
|
|
{
|
|
//Search
|
|
UnknownCommand = 1,
|
|
|
|
//Parse
|
|
ParseFailed,
|
|
BadArgCount,
|
|
|
|
//Parse (Type Reader)
|
|
//CastFailed,
|
|
ObjectNotFound,
|
|
MultipleMatches,
|
|
|
|
//Preconditions
|
|
UnmetPrecondition,
|
|
|
|
//Execute
|
|
Exception
|
|
}
|
|
}
|