I'm writing a little program in C#, and in that program i have a base error class that inherits from the System.Exception
class. Which looks as follows
// Simple Error class, used for inheriting to other types of errors
public class Error : Exception {
public Error(string ErrorType, string ErrorValue) {
Console.ForegroundColor = ConsoleColor.DarkRed;
Console.WriteLine($"[{ErrorType}]");
Console.ResetColor();
Console.WriteLine($"\t{ErrorValue}");
}
}
the thing is, i'm inheriting from the base Exception
class so i can throw
the object. When throwing it does as it's supposed to. The only thing i wonder is; If there is a way to make the exception part not print itself. I.e the one that shows up since a "Exception was thrown"
Unhandled Exception: <program-name>.Error: Exception of type '<program-name>.Error' was thrown.