Sha256: 46797d6a7de763aa6e38d8ef5f9ba86aad5b5ff0f75b30c919a9758cc01a39b0
Contents?: true
Size: 858 Bytes
Versions: 40
Compression:
Stored size: 858 Bytes
Contents
module Cucumber module WireSupport # Proxy for an exception that occured at the remote end of the wire class WireException < StandardError module CanSetName attr_writer :exception_name def to_s @exception_name end end def initialize(args, config) super args['message'] if args['exception'] self.class.extend(CanSetName) self.class.exception_name = "#{args['exception']} from #{config}" end if args['backtrace'] @backtrace = if args['backtrace'].is_a?(String) args['backtrace'].split("\n") # TODO: change cuke4nuke to pass an array instead of a big string else args['backtrace'] end end end def backtrace @backtrace || super end end end end
Version data entries
40 entries across 38 versions & 2 rubygems