* forgot to add state_error class

This commit is contained in:
Seth Call 2012-10-21 14:11:04 -05:00
parent 3e269f2551
commit 331c13d858
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
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