// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using System; using System.Runtime.Serialization; namespace Microsoft.SqlTools.ResourceProvider.Core { /// /// The exception is used if any operation fails becauase user needs to reauthenticate /// public class UserNeedsAuthenticationException : ServiceExceptionBase { /// /// Initializes a new instance of the ServiceFailedException class. /// public UserNeedsAuthenticationException() { } /// /// Initializes a new instance of the ServiceFailedException class with a specified error message. /// /// The error message that explains the reason for the exception. public UserNeedsAuthenticationException(string message) : base(message) { } /// /// Initializes a new instance of the ServiceFailedException class with a specified error message /// and a reference to the inner exception that is the cause of this exception. /// /// The error message that explains the reason for the exception. /// The exception that is the cause of the current exception, or a null reference /// (Nothing in Visual Basic) if no inner exception is specified public UserNeedsAuthenticationException(string message, Exception innerException) : base(message, innerException) { } /// /// Initializes a new instance of the ServiceFailedException class with serialized data. /// /// The SerializationInfo that holds the serialized object data about the exception being thrown. /// The StreamingContext that contains contextual information about the source or destination. public UserNeedsAuthenticationException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }