Sha256: d4dc027d4575383e4f75e22466cbd5011a8e4eef648bf74a4b05b47c2c9bd047
Contents?: true
Size: 416 Bytes
Versions: 20
Compression:
Stored size: 416 Bytes
Contents
module Snaptime module Exceptions class DeleteMethodsAreNotAvailable < StandardError def initialize super('Versionized records only support the `destroy` methods.') end end class AssociationTargetNotVersioned < StandardError def initialize(target_class) super("Association target #{target_class.inspect} does not appear to be versioned.") end end end end
Version data entries
20 entries across 20 versions & 1 rubygems