Develop and Download Open Source Software

Browse Subversion Repository

Contents of /branches/ProcessWatchImpl/Bagel/TwitterWriteFailedEventArgs.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 44 - (show annotations) (download)
Tue Dec 15 16:20:54 2009 UTC (14 years, 3 months ago) by netseed
File size: 405 byte(s)


1 using System;
2
3 namespace Toast.IsolationLayer
4 {
5 public class TwitterWriteFailedEventArgs:EventArgs
6 {
7 public TwitterWriteFailedEventArgs(string message, Exception causeException)
8 {
9 Message = message;
10 CauseException = causeException;
11 }
12
13 public Exception CauseException
14 {
15 get;
16 private set;
17 }
18
19 public string Message
20 {
21 get;
22 private set;
23 }
24 }
25 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26