Exception: ChatgptAssistant::UserNotFoundError

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

Overview

User Not Found Error

Instance Method Summary collapse

Methods included from LoadError

#load_error_context

Constructor Details

#initialize(message = load_error_context[:user_not_found]) ⇒ UserNotFoundError

Returns a new instance of UserNotFoundError.



132
133
134
# File 'lib/chatgpt_assistant/error.rb', line 132

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