21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-02 08:50:49 +02:00
chexpire/app/services/ssl/errors.rb

15 lines
440 B
Ruby
Raw Normal View History

# Copyright (C) 2018 Colin Darie <colin@darie.eu>, 2018 Evolix <info@evolix.fr>
# License: GNU AGPL-3+ (see full text in LICENSE file)
2018-07-02 17:21:08 +02:00
module SSL
class Error < StandardError; end
class SSLCommandError < Error; end
class SSLConfigurationError < Error; end
2018-07-02 17:21:08 +02:00
class ParserError < Error; end
class DomainNotMatchError < ParserError; end
class InvalidResponseError < ParserError; end
class InvalidDateError < ParserError; end
end