mirror of
https://github.com/github/codeql-action.git
synced 2025-12-17 21:09:40 +08:00
23 lines
685 B
TypeScript
23 lines
685 B
TypeScript
export declare class FilesNotFoundError extends Error {
|
|
files: string[];
|
|
constructor(files?: string[]);
|
|
}
|
|
export declare class InvalidResponseError extends Error {
|
|
constructor(message: string);
|
|
}
|
|
export declare class CacheNotFoundError extends Error {
|
|
constructor(message?: string);
|
|
}
|
|
export declare class GHESNotSupportedError extends Error {
|
|
constructor(message?: string);
|
|
}
|
|
export declare class NetworkError extends Error {
|
|
code: string;
|
|
constructor(code: string);
|
|
static isNetworkErrorCode: (code?: string) => boolean;
|
|
}
|
|
export declare class UsageError extends Error {
|
|
constructor();
|
|
static isUsageErrorMessage: (msg?: string) => boolean;
|
|
}
|