TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
amit_gupta14
NA
119
0
Dominique LeBlond: see the example
Dec 8 2004 5:17 AM
public class MyException : Exception { public MyException ( string message ) : base ( message ) { } } try { if(len>5) throw new MyException("length cannot be > 5"); } catch (MyException my) { Console.WriteLine(my.Message); } Output is:length cannot be > 5 I donot know how it come? Can u tell me the sequence of processing of MyException in this example. I want to know where is base constructor
Reply
Answers (
6
)
inserting data
Dominique LeBlond: what happened in base class instructor