inceptum
Version:
hipages take on the foundational library for enterprise-grade apps written in NodeJS
11 lines (10 loc) • 409 B
TypeScript
import HttpError from '../HttpError';
/**
* 409 Conflict
* The request could not be completed due to a conflict with the current state of the resource.
* This code is only allowed in situations where it is expected that the user might be able to resolve
* the conflict and resubmit the request.
*/
export declare class ConflictError extends HttpError {
constructor(message: string, cause?: Error);
}