feat: create chat message

This commit is contained in:
Stevan Freeborn
2024-06-27 23:26:53 -05:00
parent 68b359163d
commit 4c2cee643a
77 changed files with 3860 additions and 0 deletions
@@ -0,0 +1,24 @@
using System.Text.Json.Serialization;
namespace AnthropicClient.Models;
/// <summary>
/// Represents a not_found error.
/// </summary>
public class NotFoundError : Error
{
[JsonConstructor]
internal NotFoundError() : base(ErrorType.NotFoundError)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="NotFoundError"/> class.
/// </summary>
/// <param name="message">The message of the error.</param>
/// <returns>A new instance of the <see cref="NotFoundError"/> class.</returns>
public NotFoundError(string message) : base(ErrorType.NotFoundError)
{
Message = message;
}
}