Line data Source code
1 : using System;
2 : using System.Runtime.Serialization;
3 :
4 : namespace Cqrs.EventStore.Bus
5 : {
6 : [Serializable]
7 : public class InvalidLastEventProcessedException : Exception
8 0 : {
9 0 : public InvalidLastEventProcessedException()
10 : {
11 : }
12 :
13 0 : public InvalidLastEventProcessedException(string message, Exception innerException)
14 : : base(message, innerException)
15 : {
16 : }
17 :
18 0 : public InvalidLastEventProcessedException(string message)
19 : : base(message)
20 : {
21 : }
22 :
23 0 : protected InvalidLastEventProcessedException(SerializationInfo info, StreamingContext context)
24 : : base(info, context)
25 : {
26 : }
27 : }
28 : }
|