UNPKG

@solid/community-server

Version:

Community Solid Server: an open and modular implementation of the Solid specifications

16 lines 597 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ConflictHttpError = void 0; const HttpError_1 = require("./HttpError"); // eslint-disable-next-line ts/naming-convention const BaseHttpError = (0, HttpError_1.generateHttpErrorClass)(409, 'ConflictHttpError'); /** * An error thrown when a request conflict with current state of the server. */ class ConflictHttpError extends BaseHttpError { constructor(message, options) { super(message, options); } } exports.ConflictHttpError = ConflictHttpError; //# sourceMappingURL=ConflictHttpError.js.map