Sha256: c87f591e3cd5a08bc3b950249589d23be07589830c13b46a13fa4ac2d5783598

Contents?: true

Size: 361 Bytes

Versions: 6

Compression:

Stored size: 361 Bytes

Contents

module Demandbase

  # The base error class for all Demandbase error classes.
  class Error < StandardError
  end

  # Raised when the query string doesn't look like a domain
  class ParseError < Error
  end

  class RTIDNotSetError < Error
  end

  # Raised when there's a problem communicating with the Demandbase server.
  class ServerError < Error
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
demandbase-0.2.0 lib/demandbase/error.rb
demandbase-0.1.7 lib/demandbase/error.rb
demandbase-0.1.5 lib/demandbase/error.rb
demandbase-0.1.4 lib/demandbase/error.rb
demandbase-0.1.3 lib/demandbase/error.rb
demandbase-0.1.2 lib/demandbase/error.rb