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

Version Path
bolt-3.0.0 lib/bolt_server/plugin.rb
bolt-2.44.0 lib/bolt_server/plugin.rb
bolt-2.42.0 lib/bolt_server/plugin.rb
bolt-2.40.2 lib/bolt_server/plugin.rb
bolt-2.40.1 lib/bolt_server/plugin.rb
bolt-2.38.0 lib/bolt_server/plugin.rb
bolt-2.37.0 lib/bolt_server/plugin.rb