Menu

[r1537]: / trunk / GoogleContactsSync / DuplicateDataException.cs  Maximize  Restore  History

Download this file

25 lines (21 with data), 946 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
namespace GoContactSyncMod
{
[Serializable]
public class DuplicateDataException : Exception
{
//
// For guidelines regarding the creation of new exception types, see
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp
// and
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp
//
public DuplicateDataException() : base() { }
public DuplicateDataException(string message) : base(message) { }
public DuplicateDataException(string message, Exception inner) : base(message, inner) { }
protected DuplicateDataException(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context)
: base(info, context) { }
}
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.