Sha256: 9ce0c50a5c2d2898a3ae0681dd87b0a73baeef02178f6eacc26f3b0ed964d027
Contents?: true
Size: 551 Bytes
Versions: 64
Compression:
Stored size: 551 Bytes
Contents
module ComfortableMexicanSofa class Error < StandardError end class MissingSite < ComfortableMexicanSofa::Error def initialize(identifier) super "Cannot find CMS Site with identifier: #{identifier}" end end class MissingLayout < ComfortableMexicanSofa::Error def initialize(identifier) super "Cannot find CMS Layout with identifier: #{identifier}" end end class MissingPage < ComfortableMexicanSofa::Error def initialize(path) super "Cannot find CMS Page at #{path}" end end end
Version data entries
64 entries across 64 versions & 1 rubygems