Exception: Haml::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/haml/error.rb

Direct Known Subclasses

FilterNotFound, InternalError, SyntaxError

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message = nil, line = nil) ⇒ Error

Returns a new instance of Error.

Parameters:

  • message (String) (defaults to: nil)

    The error message

  • line (Fixnum) (defaults to: nil)

    See #line



49
50
51
52
# File 'lib/haml/error.rb', line 49

def initialize(message = nil, line = nil)
  super(message)
  @line = line
end

Instance Attribute Details

#lineFixnum (readonly)

The line of the template on which the error occurred.

Returns:

  • (Fixnum)


45
46
47
# File 'lib/haml/error.rb', line 45

def line
  @line
end

Class Method Details

.message(key, *args)



37
38
39
40
# File 'lib/haml/error.rb', line 37

def self.message(key, *args)
  string = MESSAGES[key] or raise "[HAML BUG] No error messages for #{key}"
  (args.empty? ? string : string % args).rstrip
end