Class PublicSuffixService::DomainNotAllowed
In: lib/public_suffix_service/errors.rb
Parent: DomainInvalid

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

  PublicSuffixService.parse("nic.do")
  # => PublicSuffixService::DomainNotAllowed

  PublicSuffixService.parse("www.nic.do")
  # => PublicSuffixService::Domain

@since 0.6.0

[Validate]