module ThinkificRuby
  class ConfigurationError < StandardError

    def initialize(msg="You're Thinkific Ruby configuration is not setup. Please see the readme for instructions.")
      super
    end
  end
end