Sha256: 18d2c3a225b36aff8dc029e92823156aad3d9f1e806e92e34f3874491c8f8e6c

Contents?: true

Size: 1.11 KB

Versions: 3

Compression:

Stored size: 1.11 KB

Contents

#--
# Public Suffix
#
# Domain name parser based on the Public Suffix List.
#
# Copyright (c) 2009-2011 Simone Carletti <weppos@weppos.net>
#++


module PublicSuffix

  class Error < StandardError
  end

  # Raised when trying to parse an invalid domain.
  # A domain is considered invalid when no rule is found
  # in the definition list.
  #
  # @example
  #
  #   PublicSuffix.parse("nic.test")
  #   # => PublicSuffix::DomainInvalid
  #
  #   PublicSuffix.parse("http://www.nic.it")
  #   # => PublicSuffix::DomainInvalid
  #
  # @since 0.6.0
  #
  class DomainInvalid < Error
  end

  # Raised when trying to parse a domain
  # which is formally defined by a rule,
  # but the rules set a requirement which is not satisfied
  # by the input you are trying to parse.
  #
  # @example
  #
  #   PublicSuffix.parse("nic.do")
  #   # => PublicSuffix::DomainNotAllowed
  #
  #   PublicSuffix.parse("www.nic.do")
  #   # => PublicSuffix::Domain
  #
  # @since 0.6.0
  #
  class DomainNotAllowed < DomainInvalid
  end


  # Backward Compatibility
  #
  # @deprecated Use {PublicSuffix::DomainInvalid}.
  #
  InvalidDomain = DomainInvalid

end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
public_suffix_service-0.9.1 lib/public_suffix/errors.rb
public_suffix-1.0.0 lib/public_suffix/errors.rb
public_suffix-1.0.0.rc1 lib/public_suffix/errors.rb