class TDP::NotConfiguredError

Raised when there is a record that patch was applied to the database but the patch itself doesn't exist in the schema definition.

Public Class Methods

new(patch_name) click to toggle source
  • patch_name is the name of the patch

Calls superclass method
# File lib/tdp.rb, line 18
def initialize(patch_name)
  super "No definition file for patch in database: #{patch_name}"
end