Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.3 KB
|
Line | |
---|
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 | */
|
---|
8 | export declare class BaseException extends Error {
|
---|
9 | constructor(message?: string);
|
---|
10 | }
|
---|
11 | export declare class UnknownException extends BaseException {
|
---|
12 | constructor(message: string);
|
---|
13 | }
|
---|
14 | export declare class FileDoesNotExistException extends BaseException {
|
---|
15 | constructor(path: string);
|
---|
16 | }
|
---|
17 | export declare class FileAlreadyExistException extends BaseException {
|
---|
18 | constructor(path: string);
|
---|
19 | }
|
---|
20 | export declare class PathIsDirectoryException extends BaseException {
|
---|
21 | constructor(path: string);
|
---|
22 | }
|
---|
23 | export declare class PathIsFileException extends BaseException {
|
---|
24 | constructor(path: string);
|
---|
25 | }
|
---|
26 | export declare class ContentHasMutatedException extends BaseException {
|
---|
27 | constructor(path: string);
|
---|
28 | }
|
---|
29 | export declare class InvalidUpdateRecordException extends BaseException {
|
---|
30 | constructor();
|
---|
31 | }
|
---|
32 | export declare class MergeConflictException extends BaseException {
|
---|
33 | constructor(path: string);
|
---|
34 | }
|
---|
35 | export declare class UnimplementedException extends BaseException {
|
---|
36 | constructor();
|
---|
37 | }
|
---|
38 | export declare class UnsupportedPlatformException extends BaseException {
|
---|
39 | constructor();
|
---|
40 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.