module ThinkificRuby
  class InputError < StandardError

    def initialize(msg="Invalid input.")
      super
    end
  end
end