class Lutaml::Model::Type::MaxBoundError

def initialize(value, max_bound)

def initialize(value, max_bound)
  @value = value
  @max_bound = max_bound
  super()
end

def to_s

def to_s
  "Value #{@value} is greater than the set maximum limit #{@max_bound}"
end