class TDP::MismatchError

Raised when signature of the patch in database doesn't match the signature of the patch in schema definition.

Attributes

patch[R]

Problematic patch (a Patch object)

Public Class Methods

new(patch) click to toggle source
patch

a problematic patch (a Patch object)

Calls superclass method
# File lib/tdp.rb, line 51
def initialize(patch)
  super "Applied patch doesn't match definition: #{patch.name}"
  @patch = patch
end