mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
20 lines
441 B
C#
20 lines
441 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace Kavita.Common;
|
|
|
|
/// <summary>
|
|
/// These are used for errors to send to the UI that should not be reported to Sentry
|
|
/// </summary>
|
|
public class KavitaException : Exception
|
|
{
|
|
public KavitaException()
|
|
{ }
|
|
|
|
public KavitaException(string message) : base(message)
|
|
{ }
|
|
|
|
public KavitaException(string message, Exception inner)
|
|
: base(message, inner) { }
|
|
}
|