Sha256: 45adceba1fc8b9c261c3d39d3b5f2d0d55e92ebd6136e8f81aba8002e6f3a5e3
Contents?: true
Size: 579 Bytes
Versions: 17
Compression:
Stored size: 579 Bytes
Contents
# frozen_string_literal: true 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
17 entries across 17 versions & 6 rubygems