@documentica/webdav
Version:
Documentica Webdav Client
15 lines (14 loc) • 470 B
TypeScript
export default class Exception {
static WRONG_TYPE: number;
static NAMESPWEBDAV_ACE_TAKEN: number;
static UNEXISTING_PROPERTY: number;
static WRONG_XML: number;
static WRONG_VALUE: number;
static MISSING_REQUIRED_PARAMETER: number;
static AJAX_ERROR: number;
static NOT_IMPLEMENTED: number;
message?: string;
code?: string | number;
constructor(message?: string, code?: string | number);
toString(): string | undefined;
}