-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: remove old errors_system_errors #26976
Conversation
remove old errors_system_errors, any useful information in it moved into the SystemError class docs
@JungMinu Sadly, an error occurred when I tried to trigger a build. :( |
attempts to read a file that does not exist. | ||
|
||
System errors are usually generated at the syscall level. For a comprehensive | ||
list, see the [`errno`(3) man page][]. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we really remove the whole description? It still seems partially useful to me?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See #26861 for context
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Didn't see Ruben's comment because it was hidden/resolved. I agree with him.
@@ -442,19 +439,7 @@ Some exceptions are *unrecoverable* at the JavaScript layer. Such exceptions | |||
will *always* cause the Node.js process to crash. Examples include `assert()` | |||
checks or `abort()` calls in the C++ layer. | |||
|
|||
## System Errors | |||
|
|||
Node.js generates system errors when exceptions occur within its runtime |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these two paragraphs, slightly edited, should be moved to be the description of class SystemError
, because the information in them is still useful.
This is intended to fix #26861, I believe. Could you edit the commit description to change it from:
to be punctuated and capitalized:
|
@JungMinu why did you close this? If it was to change the commit message, you can do that with |
@sam-github I know that but was already in the middle of updating it in another PR, closing this PR |
errors_system_errors
which partially predate the existence of the class, any useful information in it moved into theSystemError
class docsSystemError
class docs to the same level as all the other classesChecklist