UNPKG

xdl

Version:
26 lines (23 loc) 569 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IOSLibError = void 0; /** * Copyright (c) 2021 Expo, Inc. * Copyright (c) 2018 Drifty Co. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * Type union of error codes we get back from the protocol. */ class IOSLibError extends Error { constructor(message, code) { super(message); this.code = code; } } exports.IOSLibError = IOSLibError; //# sourceMappingURL=lib-errors.js.map