Sha256: 5ebda6d5b829bd6d7e93a1c35395ce92c453272204f34e3fde7f754ae34d933a
Contents?: true
Size: 548 Bytes
Versions: 10
Compression:
Stored size: 548 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
10 entries across 10 versions & 1 rubygems