Sha256: 3c6b7cc398af16ce7f2c902acebe1f7725a1c70a586ae3200439513cadeb57ba
Contents?: true
Size: 619 Bytes
Versions: 29
Compression:
Stored size: 619 Bytes
Contents
# typed: true # Copyright (c) 2015 Sqreen. All Rights Reserved. # Please refer to our terms for more information: https://www.sqreen.com/terms.html require 'sqreen/exception' module Sqreen # Implements actions (behavior taken in response to agent signals) module Actions # Exception for when an unknown action type is gotten from the server class UnknownActionType < ::Sqreen::Exception attr_reader :action_type def initialize(action_type) super("no such action type: #{action_type}. Must be one of #{Base.known_types}") @action_type = action_type end end end end
Version data entries
29 entries across 29 versions & 1 rubygems