blob: 512689722cbbb16eb883f89bf2fa0c14e4d9e85a (
plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
|
//-----------------------------------------------------------------------
// <copyright file="ExpiredMessageException.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging.Bindings {
using System;
using System.Diagnostics.Contracts;
using System.Globalization;
/// <summary>
/// An exception thrown when a message is received that exceeds the maximum message age limit.
/// </summary>
[Serializable]
internal class ExpiredMessageException : ProtocolException {
/// <summary>
/// Initializes a new instance of the <see cref="ExpiredMessageException"/> class.
/// </summary>
/// <param name="utcExpirationDate">The date the message expired.</param>
/// <param name="faultedMessage">The expired message.</param>
public ExpiredMessageException(DateTime utcExpirationDate, IProtocolMessage faultedMessage)
: base(string.Format(CultureInfo.CurrentCulture, MessagingStrings.ExpiredMessage, utcExpirationDate.ToLocalTime(), DateTime.Now), faultedMessage) {
Requires.True(utcExpirationDate.Kind == DateTimeKind.Utc, "utcExpirationDate");
Requires.NotNull(faultedMessage, "faultedMessage");
}
/// <summary>
/// Initializes a new instance of the <see cref="ExpiredMessageException"/> class.
/// </summary>
/// <param name="info">The <see cref="System.Runtime.Serialization.SerializationInfo"/>
/// that holds the serialized object data about the exception being thrown.</param>
/// <param name="context">The System.Runtime.Serialization.StreamingContext
/// that contains contextual information about the source or destination.</param>
protected ExpiredMessageException(
System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context)
: base(info, context) { }
}
}
|