- добавлены frontend инструкции AGENTS и локальный style guide - актуализированы SLM templates под Vite React и слой infra - добавлены шаблоны component, infra и factory-based business - нормализованы примеры документации под alias infra
13 lines
249 B
TypeScript
13 lines
249 B
TypeScript
/**
|
|
* Ошибка API {{name.pascalCase}}.
|
|
*/
|
|
export class {{name.pascalCase}}Error extends Error {
|
|
constructor(
|
|
public readonly status: number,
|
|
message: string,
|
|
) {
|
|
super(message)
|
|
this.name = '{{name.pascalCase}}Error'
|
|
}
|
|
}
|