class Myra::APIActionError

Attributes

violations[R]

Public Class Methods

new( violations, message = 'An error occured while processing your request' ) click to toggle source
Calls superclass method
# File lib/myra/objects/errors.rb, line 12
def initialize(
  violations,
  message = 'An error occured while processing your request'
)
  super(message)
  @violations = violations
end