Exception: Roadie::CssNotFound

Inherits:
Error
  • Object
show all
Defined in:
lib/roadie/errors.rb

Overview

Raised when an asset provider cannot find a stylesheet.

If you are writing your own asset provider, make sure to raise this in the #find_stylesheet! method.

See Also:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(css_name, extra_message = nil) ⇒ CssNotFound

Returns a new instance of CssNotFound.



43
44
45
46
# File 'lib/roadie/errors.rb', line 43

def initialize(css_name, extra_message = nil)
  @css_name = css_name
  super build_message(extra_message)
end

Instance Attribute Details

#css_nameObject (readonly)

The name of the stylesheet that cannot be found



41
42
43
# File 'lib/roadie/errors.rb', line 41

def css_name
  @css_name
end