Class: SNMP::NoSuchInstance
- Inherits:
-
Object
- Object
- SNMP::NoSuchInstance
show all
- Extended by:
- BER::Encode
- Defined in:
- lib/snmp/varbind.rb
Class Method Summary
collapse
encode_exception, encode_integer, encode_length, encode_null, encode_object_id, encode_octet_string, encode_sequence, encode_tagged_integer, encode_tlv, integer_to_octets
Class Method Details
.asn1_type ⇒ Object
524
525
526
|
# File 'lib/snmp/varbind.rb', line 524
def asn1_type
'noSuchInstance'
end
|
.decode(value_data) ⇒ Object
516
517
518
|
# File 'lib/snmp/varbind.rb', line 516
def decode(value_data)
NoSuchInstance
end
|
.encode ⇒ Object
520
521
522
|
# File 'lib/snmp/varbind.rb', line 520
def encode
encode_exception(BER::NoSuchInstance_TAG)
end
|
.to_s ⇒ Object
528
529
530
|
# File 'lib/snmp/varbind.rb', line 528
def to_s
asn1_type
end
|