class RHC::Rest::ValidationException

Exceptions thrown in case of an HTTP 422 is received.

Attributes

field[R]

Public Class Methods

new(message, field=nil, error_code=nil) click to toggle source
# File lib/rhc/rest.rb, line 71
def initialize(message, field=nil, error_code=nil)
  super(message, error_code)
  @field = field
end