6d5ba3b9bcc72d601a07648729de746fea2c4e63c03b01bd88c055019697a6dac512e1adbe0bc15562dde0e77f1f058e6094ecf0c1bebeada4309cce49c426 481 B

123456789
  1. /*---------------------------------------------------------------------------------------------
  2. * Copyright (c) Microsoft Corporation. All rights reserved.
  3. * Licensed under the MIT License. See License.txt in the project root for license information.
  4. *--------------------------------------------------------------------------------------------*/
  5. export class ListError extends Error {
  6. constructor(user, message) {
  7. super(`ListError [${user}] ${message}`);
  8. }
  9. }