class ExceptionHandler

Public Class Methods

new(context, builder) click to toggle source
# File template.rb, line 1386
def initialize context, builder

  @context = context

  @builder = builder

end

Public Instance Methods

entry_point(attrs = {}, &contents) click to toggle source
# File template.rb, line 1391
def entry_point(attrs = {}, &contents)

  org = get_attribute attrs, :org

  exception = get_attribute attrs, :exception



  @builder.beginEntryPoint org, exception

  @context.instance_eval &contents

  @builder.endEntryPoint

end