forest-cli
Version:
The Lumberjacks' toolbelt is the Forest CLI which makes easy to manage your back office application directly from the terminal.
26 lines • 756 B
TypeScript
export = ForestCLIError;
declare class ForestCLIError extends Error {
/**
* @param {string} message
* @param {any} [details]
* @param {{
* reason?: string;
* possibleSolution?: string;
* }} [options]
*/
constructor(message: string, details?: any, options?: {
reason?: string;
possibleSolution?: string;
});
/** @public @readonly */
public readonly name: string;
/** @public @readonly */
public readonly userMessage: string;
/** @public @readonly */
public readonly details: any;
/** @public @readonly */
public readonly reason: string;
/** @public @readonly */
public readonly possibleSolution: string;
}
//# sourceMappingURL=forest-cli-error.d.ts.map