pip-services3-commons-node
Version:
Portable abstractions and patterns for Pip.Services in Node.js
18 lines (17 loc) • 737 B
TypeScript
import { ApplicationException } from './ApplicationException';
/**
* Errors raised by conflicts between object versions that were
* posted by the user and those that are stored on the server.
*/
export declare class ConflictException extends ApplicationException {
/**
* Creates an error instance and assigns its values.
*
* @param correlation_id (optional) a unique transaction id to trace execution through call chain.
* @param code (optional) a unique error code. Default: "UNKNOWN"
* @param message (optional) a human-readable description of the error.
*
* @see [[ErrorCategory]]
*/
constructor(correlation_id?: string, code?: string, message?: string);
}