UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

26 lines (22 loc) 658 B
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * * @format */ "use strict"; const formatFileCandidates = require("./formatFileCandidates"); class FailedToResolvePathError extends Error { constructor(candidates) { super( "The module could not be resolved because none of these files exist:\n\n" + ` * ${formatFileCandidates(candidates.file)}\n` + ` * ${formatFileCandidates(candidates.dir)}` ); this.candidates = candidates; } } module.exports = FailedToResolvePathError;