1
0
Fork 0
mirror of https://github.com/tailix/libkernaux.git synced 2025-02-17 15:45:32 -05:00

mruby: declare all exceptions classes in Ruby code

This commit is contained in:
Alex Kotov 2022-05-31 22:22:37 +03:00
parent 38993ddc26
commit f5cf7cb9ca
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -25,4 +25,7 @@ module KernAux
class Error < RuntimeError; end
class AssertError < Error; end
class CmdlineError < Error; end
class InvalidNtoaBaseError < Error; end
class TooLongNtoaPrefixError < Error; end
end