21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-16 23:48:38 +02:00
chexpire/app/services/whois/errors.rb

9 lines
298 B
Ruby
Raw Normal View History

2018-05-30 12:04:07 +02:00
module Whois
class UnsupportedDomainError < StandardError; end
class ParserError < StandardError; end
class CommentNotFoundError < ParserError; end
class FieldNotFoundError < ParserError; end
class MissingDateFormatError < ParserError; end
class InvalidDateError < ParserError; end
end