Sha256: 8e798c078f2bfea3b1a46532d8a67e074ec0c8d687e10ed41ffbdb82bc63cd34
Contents?: true
Size: 287 Bytes
Versions: 59
Compression:
Stored size: 287 Bytes
Contents
module Rpush class CertificateExpiredError < StandardError attr_reader :app, :time def initialize(app, time) @app = app @time = time end def to_s message end def message "#{app.name} certificate expired at #{time}." end end end
Version data entries
59 entries across 59 versions & 2 rubygems