@autorest/go
Version:
AutoRest Go Generator
15 lines • 649 B
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/**
* CodeModelError is thrown when the an invariant in the code model has been violated.
* This is always a bug in the adapter.
*/
export class CodeModelError extends Error {
code = 'InternalError';
constructor(message) {
super(message);
}
}
//# sourceMappingURL=errors.js.map