class EnumValueError

Public Class Methods

new(msg = "Enums cannot have two identical values") click to toggle source
Calls superclass method BareException::new
# File lib/exceptions.rb, line 50
def initialize(msg = "Enums cannot have two identical values")
  super
end