class TDP::DuplicateError

Raised when there are multiple patches with different names and the same content signature.

Attributes

patch_names[R]

Contradicting patch names

Public Class Methods

new(patch_names) click to toggle source
patch_names

an array of names of problematic patches

Calls superclass method
# File lib/tdp.rb, line 87
def initialize(patch_names)
  super('Patches with same content signature and different names: ' +
    patch_names.join(' / ')
  )
  @patch_names = patch_names.freeze
end