jam-cloud/ruby/lib/jam_ruby/errors/state_error.rb

7 lines
215 B
Ruby
Raw Permalink Normal View History

2012-10-21 19:11:04 +00:00
module JamRuby
# this exception can be thrown if the server is not in a state that allows the operation to succeed
# however, it's not necessarily a bad thing; it just means
class StateError < Exception
end
end