Exception: JSMin::ParseError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- JSMin::ParseError
- Defined in:
- lib/vendor/jsmin.rb
Instance Attribute Summary collapse
-
#line ⇒ Object
Returns the value of attribute line.
-
#source ⇒ Object
Returns the value of attribute source.
Instance Method Summary collapse
-
#initialize(err, source, line) ⇒ ParseError
constructor
A new instance of ParseError.
Constructor Details
#initialize(err, source, line) ⇒ ParseError
Returns a new instance of ParseError.
64 65 66 67 68 |
# File 'lib/vendor/jsmin.rb', line 64 def initialize(err, source, line) @source = source, @line = line super "JSMin Parse Error: #{err} at line #{line} of #{source}" end |
Instance Attribute Details
#line ⇒ Object
Returns the value of attribute line.
63 64 65 |
# File 'lib/vendor/jsmin.rb', line 63 def line @line end |
#source ⇒ Object
Returns the value of attribute source.
63 64 65 |
# File 'lib/vendor/jsmin.rb', line 63 def source @source end |