Your IP : 216.73.216.45


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/@angular-devkit/core/src/exception/
Upload File :
Current File : //home/deltalab/PMS/logistic-backend/node_modules/@angular-devkit/core/src/exception/exception.d.ts

/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */
export declare class BaseException extends Error {
    constructor(message?: string);
}
export declare class UnknownException extends BaseException {
    constructor(message: string);
}
export declare class FileDoesNotExistException extends BaseException {
    constructor(path: string);
}
export declare class FileAlreadyExistException extends BaseException {
    constructor(path: string);
}
export declare class PathIsDirectoryException extends BaseException {
    constructor(path: string);
}
export declare class PathIsFileException extends BaseException {
    constructor(path: string);
}
export declare class ContentHasMutatedException extends BaseException {
    constructor(path: string);
}
export declare class InvalidUpdateRecordException extends BaseException {
    constructor();
}
export declare class MergeConflictException extends BaseException {
    constructor(path: string);
}
export declare class UnimplementedException extends BaseException {
    constructor();
}
export declare class UnsupportedPlatformException extends BaseException {
    constructor();
}