//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------ using System; using System.Runtime.Serialization; namespace System.IdentityModel.Tokens { /// /// This indicates an error has occured while processing an encrypted security token /// [Serializable] public class EncryptedTokenDecryptionFailedException : SecurityTokenException { /// /// Initializes a new instance of /// public EncryptedTokenDecryptionFailedException() : base( SR.GetString( SR.ID4022 ) ) { } /// /// Initializes a new instance of /// public EncryptedTokenDecryptionFailedException( string message ) : base( message ) { } /// /// Initializes a new instance of /// public EncryptedTokenDecryptionFailedException( string message, Exception inner ) : base( message, inner ) { } /// /// Initializes a new instance of /// protected EncryptedTokenDecryptionFailedException( SerializationInfo info, StreamingContext context ) : base( info, context ) { } } }