// Copyright (c) Microsoft. All rights reserved. using System; namespace Microsoft.Agents.AI.Purview; /// /// Represents errors that occur during the execution of a Purview job. /// /// This exception is thrown when a Purview job encounters an error that prevents it from completing successfully. internal class PurviewJobException : PurviewException { /// public PurviewJobException(string message) : base(message) { } /// public PurviewJobException() : base() { } /// public PurviewJobException(string? message, Exception? innerException) : base(message, innerException) { } }