class Bytewise::TagSectionException
Attributes
arguments[RW]
body[RW]
tag_name[RW]
Public Class Methods
new(name:, body: nil, arguments: {})
click to toggle source
Calls superclass method
# File lib/brace_markup/errors/tag_section.rb, line 5 def initialize(name:, body: nil, arguments: {}) @tag_name = name @body = body @arguments = arguments super '' end