jam-cloud/lib/jam_ruby/errors/jam_argument_error.rb

7 lines
230 B
Ruby

module JamRuby
# if a bad argument is supplied.
# Why not use the default one? This allows us to know our API layer threw this, versus us using some core library incorrectly
class JamArgumentError < ArgumentError
end
end