# frozen_string_literal: true module FractalApi class APIKeyError < StandardError; end class UnauthorizedError < StandardError; end class GenericError < StandardError; end class NotFoundError < StandardError; end class InvalidRequestError < StandardError; end end