mirror of
https://gitlab.rlp.net/mobitar/ReCo.jl.git
synced 2024-10-11 20:34:22 +00:00
9 lines
141 B
Julia
9 lines
141 B
Julia
module Error
|
|
|
|
export method_not_implemented
|
|
|
|
function method_not_implemented()
|
|
return error("Method not implemented!")
|
|
end
|
|
|
|
end # module
|