natural-language-api-google/errors/index.js

14 lines
378 B
JavaScript
Raw Permalink Normal View History

2023-10-09 17:22:48 +00:00
const CustomAPIError = require('./custom-api');
const UnauthenticatedError = require('./unauthenticated');
const NotFoundError = require('./not-found');
const BadRequestError = require('./bad-request');
const UnauthorizedError = require('./unauthorized');
module.exports = {
CustomAPIError,
UnauthenticatedError,
NotFoundError,
BadRequestError,
UnauthorizedError,
};