Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122142314
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
Wed, Jul 16, 02:41
Size
651 B
Mime Type
text/x-c++
Expires
Fri, Jul 18, 02:41 (2 d)
Engine
blob
Format
Raw Data
Handle
27440161
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