UNPKG

qus-canvas

Version:
12 lines (11 loc) 595 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LearningOutcomeNotFoundError = void 0; const not_found_system_error_1 = require("@mvc/exceptions/not-found-system.error"); const constants_1 = require("../config/constants"); class LearningOutcomeNotFoundError extends not_found_system_error_1.NotFoundSystemError { constructor(id) { super('No LearningOutcome found with id ' + id, constants_1.Constants.LEARNINGOUTCOME_NOT_FOUND_ERROR, id, 'learning-outcome#not-found'); } } exports.LearningOutcomeNotFoundError = LearningOutcomeNotFoundError;