Class: Quark::MdkRuntime::WSConnectError

Inherits:
Object
  • Object
show all
Extended by:
DatawireQuarkCore::Static
Defined in:
lib/mdk_runtime.rb

Overview

Connection failed.

Constant Summary

Constants included from DatawireQuarkCore::Static

DatawireQuarkCore::Static::Unassigned

Instance Method Summary collapse

Methods included from DatawireQuarkCore::Static

_lazy_statics, static, unlazy_statics

Constructor Details

#initialize(message) ⇒ WSConnectError

Returns a new instance of WSConnectError.



374
375
376
377
378
379
# File 'lib/mdk_runtime.rb', line 374

def initialize(message)
    
    super(message)

    nil
end

Instance Method Details

#__init_fields__Object



417
418
419
420
421
422
# File 'lib/mdk_runtime.rb', line 417

def __init_fields__()
    
    super

    nil
end

#_getClassObject



391
392
393
394
395
396
# File 'lib/mdk_runtime.rb', line 391

def _getClass()
    
    return "mdk_runtime.WSConnectError"

    nil
end

#_getField(name) ⇒ Object



398
399
400
401
402
403
404
405
406
# File 'lib/mdk_runtime.rb', line 398

def _getField(name)
    
    if ((name) == ("message"))
        return (self).message
    end
    return nil

    nil
end

#_setField(name, value) ⇒ Object



408
409
410
411
412
413
414
415
# File 'lib/mdk_runtime.rb', line 408

def _setField(name, value)
    
    if ((name) == ("message"))
        (self).message = ::DatawireQuarkCore.cast(value) { ::String }
    end

    nil
end

#toStringObject



384
385
386
387
388
389
# File 'lib/mdk_runtime.rb', line 384

def toString()
    
    return (("<WSConnectionError: ") + (method(:toString).super_method.call())) + (">")

    nil
end