Sha256: 1dfee63e85ac2d09e713c535764e43ffe62c8423133e32c8ad2676ce963ee967
Contents?: true
Size: 576 Bytes
Versions: 9
Compression:
Stored size: 576 Bytes
Contents
# Copyright (c) 2015 Sqreen. All Rights Reserved. # Please refer to our terms for more information: https://www.sqreen.com/terms.html 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
9 entries across 9 versions & 1 rubygems