You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommandError.cs 370 B

1234567891011121314151617181920212223
  1. namespace Discord.Commands
  2. {
  3. public enum CommandError
  4. {
  5. //Search
  6. UnknownCommand = 1,
  7. //Parse
  8. ParseFailed,
  9. BadArgCount,
  10. //Parse (Type Reader)
  11. //CastFailed,
  12. ObjectNotFound,
  13. MultipleMatches,
  14. //Preconditions
  15. UnmetPrecondition,
  16. //Execute
  17. Exception
  18. }
  19. }