mirror of
https://git.nadeko.net/Fijxu/invidious.git
synced 2025-12-24 03:48:49 +00:00
9 lines
202 B
Crystal
9 lines
202 B
Crystal
# Exception used to hold the name of the missing item
|
|
# Should be used in all parsing functions
|
|
class BrokenTubeException < InfoException
|
|
getter element : String
|
|
|
|
def initialize(@element)
|
|
end
|
|
end
|