How!?
What is the syntax for using the constructors of parent classes in child classes!? I am doing my own Exception class which is inherrited from Exception, however I do not know how to use Exception(string message) contructor of that class in my own. I have something like this...
Code:
public class ExceptionSubmit : Exception
{
public ExceptionSubmit(string message)
{
}
}
... however something is missing! What?
Thanks
Jacob.