UNPKG

deepify

Version:
22 lines (18 loc) 434 B
/** * Created by AlexanderC on 8/10/15. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.LambdaExecutionException = undefined; var _Exception = require('./Exception'); class LambdaExecutionException extends _Exception.Exception { /** * @param {String} error */ constructor(error) { super(error.toString()); } } exports.LambdaExecutionException = LambdaExecutionException;