Skip to content

Errors and Exceptions Raises by C Code Runner

DeveloperSwastik edited this page Dec 22, 2022 · 5 revisions

Logo Image


Home            downloads            Documentations


Table of Contents

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 .........
------------------------------------------------------------------

Clone this wiki locally