Exception: TDP::NotConfiguredError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/tdp.rb

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(patch_name) ⇒ NotConfiguredError

  • patch_name is the name of the patch



18
19
20
# File 'lib/tdp.rb', line 18

def initialize(patch_name)
  super "No definition file for patch in database: #{patch_name}"
end