// Copyright (c) Microsoft. All rights reserved. using System; namespace Microsoft.Agents.AI.Purview; /// /// Exception for authentication errors related to Purview. /// public class PurviewAuthenticationException : PurviewException { /// public PurviewAuthenticationException(string message) : base(message) { } /// public PurviewAuthenticationException() : base() { } /// public PurviewAuthenticationException(string? message, Exception? innerException) : base(message, innerException) { } }