Quick Reference

This page lists all error codes covered on this site. Use your browser’s search (Ctrl+F) to find a specific code.

Windows Errors

CodeDescriptionFix
0x80004005Unspecified ErrorWindows Update troubleshooter, SFC/DISM
0x80070005Access DeniedTake ownership, permissions fix
0x80070002File Not Found (Update)Clear SoftwareDistribution cache
0x8000FFFFCatastrophic Failurewsreset.exe, re-register Store
DPC Watchdog ViolationBSODUpdate storage drivers, SSD firmware
IRQL_NOT_LESS_OR_EQUALBSODUpdate drivers, memory diagnostics

Linux Errors

CodeNameDescriptionFix
errno-1EPERMOperation not permittedsudo, chmod, chown
errno-2ENOENTNo such file or directoryVerify path, find command
errno-5EIOInput/output errorCheck disk, fsck
errno-12ENOMEMOut of memoryCheck free, add swap
errno-13EACCESPermission deniedchmod, check ACLs
errno-28ENOSPCNo space left on devicedf -h, find large files

macOS Errors

CodeNameDescriptionFix
-43FNFErrFile not foundReset Finder, Spotlight
-36ioErrInput/output errorDisk Utility First Aid
-50paramErrParameter errorCheck syntax, reset NVRAM

Python Errors

ErrorDescriptionFix
TypeErrorWrong type operationType conversion
ValueErrorInvalid argumentInput validation
KeyErrorDict key not found.get(), ‘in’ check
IndexErrorList index out of rangeCheck len()
AttributeErrorNo attributehasattr(), type check
ImportErrorModule not foundpip install, sys.path
IndentationErrorBad indentation4 spaces, autopep8
SyntaxErrorInvalid syntaxCheck syntax
ZeroDivisionErrorDivision by zeroValidate divisor
FileNotFoundErrorFile not foundCheck path, os.path.exists

C/C++ Errors

ErrorDescriptionFix
Segmentation FaultMemory access violationgdb, null checks, valgrind
malloc NULLMemory allocation failedCheck return, free memory
Stack OverflowInfinite recursionBase case, iteration
std::out_of_rangeIndex out of range.at(), check size()
std::bad_allocAllocation failedtry/catch, smart pointers

PHP Errors

ErrorDescriptionFix
Parse ErrorSyntax errorCheck syntax
Fatal ErrorUncaught errorDefine functions, memory
Undefined IndexArray key missingisset(), ?? operator

Java Errors

ErrorDescriptionFix
NullPointerExceptionNull referencenull check, Optional
ClassNotFoundExceptionClass not foundCheck classpath
OutOfMemoryErrorHeap space-Xmx, fix leaks
ClassCastExceptionWrong castinstanceof, generics
StackOverflowErrorInfinite recursionBase case, -Xss

JavaScript/Node.js Errors

ErrorDescriptionFix
ReferenceErrorVariable not definedDeclare variable
TypeErrorCannot read propertyOptional chaining ?.
SyntaxErrorUnexpected tokenCheck syntax
ENOENTFile not foundpath.join(), __dirname
CORS ErrorCross-origin blockedServer headers, proxy

Deprecated Functions

FunctionLanguageReplacement
ereg()PHPpreg_match()
split()PHPexplode()
each()PHPforeach
mysql_*PHPmysqli_* / PDO
create_function()PHPAnonymous functions
print statementPythonprint()
raw_input()Pythoninput()
has_key()Python‘in’ operator
escape()/unescape()JavaScriptencodeURI()
substr()JavaScriptslice()
execCommand()JavaScriptClipboard API
Thread.stop()JavaThread.interrupt()
Date methodsJavajava.time API