docs
functions
Exceptions
DocumentNotFoundError

Descrição

Ela é usada para sinalizar que um documento não foi encontrado no Firebase Firestore.

Uso

import { DocumentNotFoundError } from '@burand/functions/exceptions';
 
try {
  await this._user.getById('abc123');
} catch (error) {
  if (error instanceof DocumentNotFoundError) {
    console.error(error.message); // "Document 'abc123' was not found."
  } else {
    console.error(error);
  }
}