@veecode-platform/safira-cli
Version:
Generate a microservice project from your spec.
17 lines (16 loc) • 645 B
TypeScript
import { BusinessException } from "./safira-exception";
export declare class LanguageNotSupportedException extends BusinessException {
constructor(language: string);
}
export declare class FrameworkNotSupportedException extends BusinessException {
constructor(framework: string);
}
export declare class PlatformNotSupportedException extends BusinessException {
constructor(framework: string);
}
export declare class JavaPackageNotSupportedException extends BusinessException {
constructor(message: string);
}
export declare class ArchitectureNotSupportedException extends BusinessException {
constructor(platform: string);
}