-
Notifications
You must be signed in to change notification settings - Fork 0
Errors and Exceptions Raises by C Code Runner
- FileNotFoundError
- FileExistsError
- FileNameNotGivenError
- DirectoryNotFoundError
- CompilationError
- ArgumentNotPassError
- InvalidArgumentError
FileNotFoundError 🔝
How error looks:
------------------------------------
Compilation Doesn't Starts ....
FileNotFoundError: File 'file_name.c' not exists ..
------------------------------------
About the error: This error occurs when your pass a file name which doesn't exists in you system.
FileExistsError 🔝
How error looks:
------------------------------------
FileExistsError: File '{file_name}.c' already exists ...
------------------------------------
About the error: This error occurs when your pass a file name which already exists in you system.
FileNameNotGivenError 🔝
How error looks:
------------------------------------
Compilation Doesn't Starts ....
FileNameNotGivenError: C file name not given ....
------------------------------------
About the error: This error occurs when you don’t pass the file name of c file.
DirectoryNotFoundError 🔝
How error looks:
------------------------------------
Compilation Doesn't Starts ....
DirectoryNotFoundError: Directory 'file_name.c' not exists ...
------------------------------------
About the error: This error occurs when you pass a directory location which does not exists in your system.
NotADirectoryError 🔝
How error looks:
------------------------------------
Compilation Doesn't Starts ....
NotADirectoryError: Given path 'C:\\dirs\\path\\file_name.c' is not a path of directory ...
------------------------------------
About the error: This error occurs when you pass directory name with file name, because of this utility can't able to find directory.
CompilationError 🔝
How error looks:
CompilationError: There is error in compilation of file_name.c
About the error: This error occurs when there is an error in the compilation process.
ArgumentNotPassError 🔝
How error looks:
---------------------------------------------------------
ArgumentNotPassError: You doesn't pass any argument .....
---------------------------------------------------------
About the error: This error occurs when you doesn't passes any argument to the utility.
InvalidArgumentError 🔝
How error looks:
------------------------------------------------------------------
InvalidArgumentError: Given value to argument is invalid .........
------------------------------------------------------------------
C Code Runner
- Home
- Downloads
-
Documentations
- Installers
- Uninstallers
- Debugger
- Error & Exceptions