UNPKG

@veecode-platform/safira-cli

Version:

Generate a microservice project from your spec.

17 lines (16 loc) 657 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.GithubContentNotFoundException = exports.GithubContentConflictException = void 0; const safira_exception_1 = require("./safira-exception"); class GithubContentConflictException extends safira_exception_1.BusinessException { constructor(message) { super(message); } } exports.GithubContentConflictException = GithubContentConflictException; class GithubContentNotFoundException extends safira_exception_1.BusinessException { constructor(message) { super(message); } } exports.GithubContentNotFoundException = GithubContentNotFoundException;