Sha256: 4f5a013882a66d79940d6ebe72ab6cd68c6946df4cea98cc2850be96e6092d16
Contents?: true
Size: 322 Bytes
Versions: 15
Compression:
Stored size: 322 Bytes
Contents
# frozen_string_literal: true module KubernetesDeploy class FatalDeploymentError < StandardError; end class KubectlError < StandardError; end class NamespaceNotFoundError < FatalDeploymentError def initialize(name, context) super("Namespace `#{name}` not found in context `#{context}`") end end end
Version data entries
15 entries across 15 versions & 1 rubygems