Sha256: 90925e139eba4592d6d14592187e8081a3866646d4fd2640660998021e2c5445
Contents?: true
Size: 305 Bytes
Versions: 7
Compression:
Stored size: 305 Bytes
Contents
# frozen_string_literal: true module Vnstat # # An exception that is raised when the specified interface could not be found # among the known ones. class UnknownInterface < Error attr_reader :interface_id def initialize(interface_id) @interface_id = interface_id end end end
Version data entries
7 entries across 7 versions & 1 rubygems