1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
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 | }
|