Class: Quark::Quark::WSError

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

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) ⇒ WSError

Returns a new instance of WSError.



2181
2182
2183
2184
2185
2186
# File 'lib/quark.rb', line 2181

def initialize(message)
    
    super(message)

    nil
end

Instance Method Details

#__init_fields__Object



2217
2218
2219
2220
2221
2222
# File 'lib/quark.rb', line 2217

def __init_fields__()
    
    super

    nil
end

#_getClassObject



2191
2192
2193
2194
2195
2196
# File 'lib/quark.rb', line 2191

def _getClass()
    
    return "quark.WSError"

    nil
end

#_getField(name) ⇒ Object



2198
2199
2200
2201
2202
2203
2204
2205
2206
# File 'lib/quark.rb', line 2198

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

    nil
end

#_setField(name, value) ⇒ Object



2208
2209
2210
2211
2212
2213
2214
2215
# File 'lib/quark.rb', line 2208

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

    nil
end