Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101829806
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, Feb 14, 03:56
Size
651 B
Mime Type
text/x-c++
Expires
Sun, Feb 16, 03:56 (1 d, 8 h)
Engine
blob
Format
Raw Data
Handle
24238963
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