Exception: JSMin::ParseError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/vendor/jsmin.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#lineObject

Returns the value of attribute line.



63
64
65
# File 'lib/vendor/jsmin.rb', line 63

def line
  @line
end

#sourceObject

Returns the value of attribute source.



63
64
65
# File 'lib/vendor/jsmin.rb', line 63

def source
  @source
end