Sha256: 2364854f3f572a2686e9e13d6b618b3f7cc29c7eb14f0d22d58d863e769c2628

Contents?: true

Size: 321 Bytes

Versions: 9

Compression:

Stored size: 321 Bytes

Contents

module HammerCLIForeman

  class OperationNotSupportedError < StandardError; end

  # Resolver exceptions
  class ResolverError < StandardError

    attr_reader :resource

    def initialize(msg, resource)
      @resource = resource
      super(msg)
    end
  end

  class MissingSeachOptions < ResolverError; end

end


Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
hammer_cli_foreman-0.6.2 lib/hammer_cli_foreman/exceptions.rb
hammer_cli_foreman-0.6.1 lib/hammer_cli_foreman/exceptions.rb
hammer_cli_foreman-0.6.0 lib/hammer_cli_foreman/exceptions.rb
hammer_cli_foreman-0.5.1 lib/hammer_cli_foreman/exceptions.rb
hammer_cli_foreman-0.5.0 lib/hammer_cli_foreman/exceptions.rb
hammer_cli_foreman-0.4.0 lib/hammer_cli_foreman/exceptions.rb
hammer_cli_foreman-0.3.0 lib/hammer_cli_foreman/exceptions.rb
hammer_cli_foreman-0.2.0 lib/hammer_cli_foreman/exceptions.rb
hammer_cli_foreman-0.1.4 lib/hammer_cli_foreman/exceptions.rb