1 | ;
|
2 | // Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
3 | // SPDX-License-Identifier: Apache-2.0
|
4 | Object.defineProperty(exports, "__esModule", { value: true });
|
5 | exports.invalidParameter = exports.missingConfig = void 0;
|
6 | function missingConfig(name) {
|
7 | return new Error('Missing config value of ' + name);
|
8 | }
|
9 | exports.missingConfig = missingConfig;
|
10 | function invalidParameter(name) {
|
11 | return new Error('Invalid parameter value of ' + name);
|
12 | }
|
13 | exports.invalidParameter = invalidParameter;
|