// Copyright (c) Microsoft. All rights reserved. using System; namespace Microsoft.Agents.AI.Purview; /// /// Represents an exception that is thrown when the maximum number of concurrent Purview jobs has been exceeded. /// /// This exception indicates that the Purview service has reached its limit for concurrent job executions. internal class PurviewJobLimitExceededException : PurviewJobException { /// public PurviewJobLimitExceededException(string message) : base(message) { } /// public PurviewJobLimitExceededException() : base() { } /// public PurviewJobLimitExceededException(string? message, Exception? innerException) : base(message, innerException) { } }