class CertValidator::OcspFailures::SerialMismatch

Public Class Methods

new(got, expected) click to toggle source
Calls superclass method
# File lib/cert_validator/errors.rb, line 58
def initialize(got, expected)
  super "OCSP response serial was #{got.inspect}, expected #{expected.inspect}"
end