Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F117328670
BuildCycleError.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Jun 13, 00:58
Size
651 B
Mime Type
text/x-c++
Expires
Sun, Jun 15, 00:58 (2 d)
Engine
blob
Format
Raw Data
Handle
26727257
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
BuildCycleError.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const WebpackError = require("../WebpackError");
/** @typedef {import("../Module")} Module */
class BuildCycleError extends WebpackError {
/**
* Creates an instance of ModuleDependencyError.
* @param {Module} module the module starting the cycle
*/
constructor(module) {
super(
"There is a circular build dependency, which makes it impossible to create this module"
);
this.name = "BuildCycleError";
this.module = module;
Error.captureStackTrace(this, this.constructor);
}
}
module.exports = BuildCycleError;
Event Timeline
Log In to Comment