20 lines
421 B
TypeScript
20 lines
421 B
TypeScript
/*
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
/**
|
|
* Library-specific error interface type
|
|
*
|
|
* @packageDocumentation
|
|
* @module error
|
|
*/
|
|
|
|
/**
|
|
* Node/browser-shared interface for an error thrown by the CRT. Implementations of the interface
|
|
* extend the base Javascript Error.
|
|
*/
|
|
export interface ICrtError {
|
|
|
|
readonly error_name?: string;
|
|
} |