404 error with message and provide example

This commit is contained in:
matthewmcgarvey
2022-01-18 18:56:26 -06:00
parent d4f3139b73
commit 56e505164d
2 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
class ChannelSearchException < InfoException
def initialize(channel : String)
super "Unable to find channel with id of '#{channel}'. Are you sure that's an actual channel id?"
getter channel : String
def initialize(@channel)
end
end