How can i know where instance of class was created?
i have my own Exception class, i want to add to error message source class which create instance of exception.
public class Konektor_Exception : Exception
{
public string Message_Konektor;
public Konektor_Exception(string paMessage):base(source_class)
{
this.Message_Konektor = paMessage;
}
}
-
in code base(source_class),
source_class = string of author class of instance of Exception...
how can i do it?

