Exception: Droonga::Catalog::LegacyValidationError

Inherits:
Error
  • Object
show all
Defined in:
lib/droonga/catalog/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(message, path) ⇒ LegacyValidationError

Returns a new instance of LegacyValidationError.



40
41
42
43
44
45
46
# File 'lib/droonga/catalog/errors.rb', line 40

def initialize(message, path)
  if path
    super("[Validation Error <#{path}>]#{message}")
  else
    super(message)
  end
end