Exception: GoodData::ValidationError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/gooddata/exceptions/validation_error.rb

Overview

Project Not Found

Constant Summary collapse

DEFAULT_MSG =
'Validation has failed. Run validate method on blueprint to learn more about the errors.'

Instance Method Summary collapse

Constructor Details

#initialize(msg = DEFAULT_MSG) ⇒ ValidationError

Returns a new instance of ValidationError.



12
13
14
# File 'lib/gooddata/exceptions/validation_error.rb', line 12

def initialize(msg = DEFAULT_MSG)
  super(msg)
end