Sha256: 5b0d438e33b341a8ea431e1255142a79f6b8cb1df2e940f5be4c7e455ac933f0

Contents?: true

Size: 300 Bytes

Versions: 1

Compression:

Stored size: 300 Bytes

Contents

# frozen_string_literal: true
module KubernetesDeploy
  class FatalDeploymentError < StandardError; end

  class NamespaceNotFoundError < FatalDeploymentError
    def initialize(name, context)
      super("Namespace `#{name}` not found in context `#{context}`. Aborting the task.")
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
kubernetes-deploy-0.6.2 lib/kubernetes-deploy/errors.rb