Exception: CSSminify2Enhanced::MalformedCSSError
- Inherits:
-
StandardError
- Object
- StandardError
- CSSminify2Enhanced::MalformedCSSError
- Defined in:
- lib/cssminify2/enhanced.rb
Overview
Error class for malformed CSS
Instance Attribute Summary collapse
-
#css_errors ⇒ Object
readonly
Returns the value of attribute css_errors.
Instance Method Summary collapse
-
#initialize(message, css_errors = []) ⇒ MalformedCSSError
constructor
A new instance of MalformedCSSError.
Constructor Details
#initialize(message, css_errors = []) ⇒ MalformedCSSError
Returns a new instance of MalformedCSSError.
813 814 815 816 |
# File 'lib/cssminify2/enhanced.rb', line 813 def initialize(, css_errors = []) super() @css_errors = css_errors end |
Instance Attribute Details
#css_errors ⇒ Object (readonly)
Returns the value of attribute css_errors.
811 812 813 |
# File 'lib/cssminify2/enhanced.rb', line 811 def css_errors @css_errors end |