Sha256: 02b634ea9e96eb6cde4839a1611997d52666992f6f6b2539b4bd05508f18cf93
Contents?: true
Size: 1 KB
Versions: 4
Compression:
Stored size: 1 KB
Contents
# frozen_string_literal: true module Script module Layers module Domain module Errors class PushPackageNotFoundError < ScriptProjectError; end class InvalidExtensionPointError < ScriptProjectError attr_reader :type def initialize(type) super() @type = type end end class MissingScriptConfigFieldError < ScriptProjectError attr_reader :field def initialize(field) super() @field = field end end class ScriptNotFoundError < ScriptProjectError attr_reader :script_name, :extension_point_type def initialize(extension_point_type, script_name) super() @script_name = script_name @extension_point_type = extension_point_type end end class MetadataNotFoundError < ScriptProjectError; end class MetadataValidationError < ScriptProjectError; end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems