public
Description:
Homepage: http://www.iserviceoriented.com
Clone URL: git://github.com/jezell/iserviceoriented.git
iserviceoriented / IServiceOriented.ServiceBus / DuplicateIdentifierException.cs
100644 27 lines (24 sloc) 1.043 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace IServiceOriented.ServiceBus
{
[global::System.Serializable]
    public class DuplicateIdentifierException : 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 DuplicateIdentifierException() { }
        public DuplicateIdentifierException(string message) : base(message) { }
        public DuplicateIdentifierException(string message, Exception inner) : base(message, inner) { }
        protected DuplicateIdentifierException(
          System.Runtime.Serialization.SerializationInfo info,
          System.Runtime.Serialization.StreamingContext context)
            : base(info, context) { }
    }
}