class Relaxo::QueryServer::ValidationError
Indicates that a validation error has occured.
Attributes
details[R]
The details of the validation error, typically:
{:forbidden => "Message"}
or
{:unauthorized => "Message"}
Public Class Methods
new(details)
click to toggle source
Calls superclass method
# File lib/relaxo/query_server/designer.rb, line 29 def initialize(details) super "Validation failed!" @details = details end