nestjs-appwrite
Version:
Easier Appwrite integration for your NestJS application.
11 lines (10 loc) • 438 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppwriteUnauthorizedException = void 0;
const appwrite_http_exception_1 = require("./appwrite-http.exception");
class AppwriteUnauthorizedException extends appwrite_http_exception_1.AppwriteHttpException {
constructor(type, message) {
super(401, type, message);
}
}
exports.AppwriteUnauthorizedException = AppwriteUnauthorizedException;