UNPKG

797 BTypeScriptView Raw
1/**
2 * @license
3 * Copyright Google LLC All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8export declare class BaseException extends Error {
9 constructor(message?: string);
10}
11export declare class UnknownException extends BaseException {
12 constructor(message: string);
13}
14export declare class FileDoesNotExistException extends BaseException {
15 constructor(path: string);
16}
17export declare class FileAlreadyExistException extends BaseException {
18 constructor(path: string);
19}
20export declare class PathIsDirectoryException extends BaseException {
21 constructor(path: string);
22}
23export declare class PathIsFileException extends BaseException {
24 constructor(path: string);
25}