Sha256: 4ec69d36d858973cc32f57328ccf106d094d1a02bce65ff6a791528a5189ad6a
Contents?: true
Size: 278 Bytes
Versions: 10
Compression:
Stored size: 278 Bytes
Contents
# frozen_string_literal: true module Dry module Core class InvalidClassAttributeValue < StandardError def initialize(name, value) super( "Value #{value.inspect} is invalid for class attribute #{name.inspect}" ) end end end end
Version data entries
10 entries across 10 versions & 2 rubygems