You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's likely that in a bot for, say, IRC or Discord, will be listening to all messages, and then attempting to parse them. This means that if a parser throws an exception when a command fails to parse, it will be throwing on every message. Since failing to parse is, in this case, not an exceptional error, I should put some work in to make sure that parsers can communicate failure without throwing an exception.
The text was updated successfully, but these errors were encountered:
It's likely that in a bot for, say, IRC or Discord, will be listening to all messages, and then attempting to parse them. This means that if a parser throws an exception when a command fails to parse, it will be throwing on every message. Since failing to parse is, in this case, not an exceptional error, I should put some work in to make sure that parsers can communicate failure without throwing an exception.
The text was updated successfully, but these errors were encountered: