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:

Direct Known Subclasses

ProvidersFailed

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(css_name:, message: nil, provider: nil) ⇒ CssNotFound

Returns a new instance of CssNotFound.



46
47
48
49
50
51
# File 'lib/roadie/errors.rb', line 46

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

Instance Attribute Details

#css_nameObject (readonly)

The name of the stylesheet that cannot be found



38
39
40
# File 'lib/roadie/errors.rb', line 38

def css_name
  @css_name
end

#extra_messageObject (readonly)

Extra message



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

def extra_message
  @extra_message
end

#providerObject (readonly)

Provider used when finding



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

def provider
  @provider
end