10 lines
358 B
C#
10 lines
358 B
C#
namespace meilisearch.NET.Exceptions;
|
|
|
|
/// <summary>
|
|
/// Base exception class for all Meilisearch.NET exceptions
|
|
/// </summary>
|
|
public class MeiliSearchException : Exception
|
|
{
|
|
public MeiliSearchException(string message) : base(message) { }
|
|
public MeiliSearchException(string message, Exception innerException) : base(message, innerException) { }
|
|
} |