What's the meaning of public MyException(string str):base (str)
I have got the reply for the below.
public class MyException : Exception
{
public MyException(string str):base (str)
{
}
}
But no explanation for public MyException(string str):base (str) .What's its meaning and purpose