Sha256: 6de983fbb738bac7d18c008f6bdcc1287dfcc12546931047d9a0ef65f6e5f75e
Contents?: true
Size: 278 Bytes
Versions: 47
Compression:
Stored size: 278 Bytes
Contents
# frozen_string_literal: true require 'bolt/error' module BoltServer class Plugin class PluginNotSupported < Bolt::Error def initialize(msg, plugin_name) super(msg, 'bolt/plugin-not-supported', { "plugin_name" => plugin_name }) end end end end
Version data entries
47 entries across 47 versions & 1 rubygems