Exception: EppoClient::InvalidValueError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/custom_errors.rb

Overview

A custom error class for invalid values

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ InvalidValueError

Returns a new instance of InvalidValueError.



30
31
32
# File 'lib/custom_errors.rb', line 30

def initialize(message)
  super("InvalidValueError: #{message}")
end