UNPKG

309 BJavaScriptView Raw
1// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0
3export function missingConfig(name) {
4 return new Error('Missing config value of ' + name);
5}
6export function invalidParameter(name) {
7 return new Error('Invalid parameter value of ' + name);
8}