Exception: ChatgptAssistant::UserAlreadyExistsError

Inherits:
StandardError
  • Object
show all
Includes:
LoadError
Defined in:
lib/chatgpt_assistant/error.rb

Overview

User Already Exists Error

Instance Method Summary collapse

Methods included from LoadError

#load_error_context

Constructor Details

#initialize(message = load_error_context[:user_already_exists]) ⇒ UserAlreadyExistsError

Returns a new instance of UserAlreadyExistsError.



51
52
53
# File 'lib/chatgpt_assistant/error.rb', line 51

def initialize(message = load_error_context[:user_already_exists])
  super(message)
end