I want to make a custom Exception in C#, but in theory I do need to do a little parsing first before I can make a human readable ExceptionMessage.
The problem is that th
I like to use this here. It is easy and does not need the static function:
public class MyException : Exception { public MyException () : base("This is my Custom Exception Message") { } }