Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102015679
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
Sun, Feb 16, 05:22
Size
651 B
Mime Type
text/x-c++
Expires
Tue, Feb 18, 05:22 (2 d)
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