Sha256: b22c9a0e7aea6d2220d195d1eb64e00c096b4ff616c566fe040a66347a8ff2b1

Contents?: true

Size: 363 Bytes

Versions: 5

Compression:

Stored size: 363 Bytes

Contents

module RubyApp

  module Elements

    module Dialogs
      require 'ruby_app/elements/dialogs/close_dialog'

      class ExceptionDialog < RubyApp::Elements::Dialogs::CloseDialog

        template_path(:all, File.dirname(__FILE__))

        def initialize(exception)
          super()
          @exception = exception
        end

      end

    end

  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
RubyApp-0.0.10 lib/ruby_app/elements/dialogs/exception_dialog.rb
RubyApp-0.0.9 lib/ruby_app/elements/dialogs/exception_dialog.rb
RubyApp-0.0.8 lib/ruby_app/elements/dialogs/exception_dialog.rb
RubyApp-0.0.7 lib/ruby_app/elements/dialogs/exception_dialog.rb
RubyApp-0.0.6 lib/ruby_app/elements/dialogs/exception_dialog.rb