Sha256: d3dc55ae7c93f5687e221ac53b03c104a8b641cb7575807928210fba138e7975
Contents?: true
Size: 1.13 KB
Versions: 2
Compression:
Stored size: 1.13 KB
Contents
module SeoFriendly class SourceNotDefinedError < StandardError MESSAGE = 'Unable to find seo rule %{policy_name} for %{object} class' attr_reader :object def initialize(policy, object) super( MESSAGE % { policy_name: policy, object: object} ) @object = object end end class UnknownSeoAttributeError < StandardError MESSAGE = 'Unknown seo attribute method \'%{seo_method}\' for field \'%{seo_field}\'.' attr_reader :object def initialize(seo_field, seo_method) super( MESSAGE % { seo_field: seo_field, seo_method: seo_method } ) @object = object end end class UnknownSeoModeError < StandardError MESSAGE = 'Unknown seo mode value %{seo_mode}' attr_reader :object def initialize(mode) super( MESSAGE % { seo_mode: mode} ) @object = object end end class ExtractDataFromSourceError < StandardError MESSAGE = 'Failed to extract data from source %{source_name}. ' attr_reader :object def initialize(source_name, stack_message) super( MESSAGE % { source_name: source_name} << stack_message ) @object = object end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
seo_friendly-0.0.2 | lib/seo_friendly/exceptions.rb |
seo_friendly-0.0.1 | lib/seo_friendly/exceptions.rb |