mirror of
https://github.com/tailix/libkernaux.git
synced 2025-02-24 15:55:41 -05:00
9 lines
201 B
Ruby
9 lines
201 B
Ruby
|
module KernAux
|
||
|
DEFAULT_ASSERT_CB = @assert_cb = lambda { |file, line, msg|
|
||
|
raise AssertError, "#{file}:#{line}:#{msg}"
|
||
|
}
|
||
|
|
||
|
class Error < RuntimeError; end
|
||
|
class AssertError < Error; end
|
||
|
end
|