chore: add mobile app

This commit is contained in:
2026-02-07 22:33:02 +01:00
parent db34640acc
commit e89384ad4e
29327 changed files with 3886944 additions and 12 deletions
@@ -0,0 +1,13 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true,
});
exports.default = void 0;
class GraphNotFoundError extends Error {
constructor(graphId) {
super(`The graph \`${graphId}\` was not found.`);
this.graphId = graphId;
}
}
exports.default = GraphNotFoundError;
@@ -0,0 +1,21 @@
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict-local
* @format
* @oncall react_native
*/
import type {GraphId} from '../lib/getGraphId';
export default class GraphNotFoundError extends Error {
graphId: GraphId;
constructor(graphId: GraphId) {
super(`The graph \`${graphId}\` was not found.`);
this.graphId = graphId;
}
}
@@ -0,0 +1,13 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true,
});
exports.default = void 0;
class ResourceNotFoundError extends Error {
constructor(resourcePath) {
super(`The resource \`${resourcePath}\` was not found.`);
this.resourcePath = resourcePath;
}
}
exports.default = ResourceNotFoundError;
@@ -0,0 +1,19 @@
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict-local
* @format
* @oncall react_native
*/
export default class ResourceNotFoundError extends Error {
resourcePath: string;
constructor(resourcePath: string) {
super(`The resource \`${resourcePath}\` was not found.`);
this.resourcePath = resourcePath;
}
}
@@ -0,0 +1,13 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true,
});
exports.default = void 0;
class RevisionNotFoundError extends Error {
constructor(revisionId) {
super(`The revision \`${revisionId}\` was not found.`);
this.revisionId = revisionId;
}
}
exports.default = RevisionNotFoundError;
@@ -0,0 +1,21 @@
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow strict-local
* @format
* @oncall react_native
*/
import type {RevisionId} from '../IncrementalBundler';
export default class RevisionNotFoundError extends Error {
revisionId: RevisionId;
constructor(revisionId: RevisionId) {
super(`The revision \`${revisionId}\` was not found.`);
this.revisionId = revisionId;
}
}