class Conrad::ForbiddenValue

Error raised when the value of an event attribute is not of one of the allowed types

Public Class Methods

new(key, value) click to toggle source
# File lib/conrad/errors.rb, line 24
def initialize(key, value)
  @key = key
  @value = value
end