2020-12-23 14:59:06 +01:00
|
|
|
Creating a new ``Error`` without actually throwing it is useless and is probably due to a mistake.
|
2020-06-30 12:48:39 +02:00
|
|
|
|
|
|
|
== Noncompliant Code Example
|
|
|
|
|
|
|
|
----
|
|
|
|
if (x < 0) {
|
|
|
|
new Error("x must be nonnegative");
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
== Compliant Solution
|
|
|
|
|
|
|
|
----
|
|
|
|
if (x < 0) {
|
|
|
|
throw new Error("x must be nonnegative");
|
|
|
|
}
|
|
|
|
----
|