Class: Quark::Quark::ServletError

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

Returns a new instance of ServletError.



929
930
931
932
933
934
# File 'lib/quark.rb', line 929

def initialize(message)
    
    super(message)

    nil
end

Instance Method Details

#__init_fields__Object



965
966
967
968
969
970
# File 'lib/quark.rb', line 965

def __init_fields__()
    
    super

    nil
end

#_getClassObject



939
940
941
942
943
944
# File 'lib/quark.rb', line 939

def _getClass()
    
    return "quark.ServletError"

    nil
end

#_getField(name) ⇒ Object



946
947
948
949
950
951
952
953
954
# File 'lib/quark.rb', line 946

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

    nil
end

#_setField(name, value) ⇒ Object



956
957
958
959
960
961
962
963
# File 'lib/quark.rb', line 956

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

    nil
end