using System.Text.Json.Serialization; namespace AnthropicClient.Models; /// /// Represents a not_found error. /// public class NotFoundError : Error { [JsonConstructor] internal NotFoundError() : base(ErrorType.NotFoundError) { } /// /// Initializes a new instance of the class. /// /// The message of the error. /// A new instance of the class. public NotFoundError(string message) : base(ErrorType.NotFoundError) { Message = message; } }