
* Updated README to be explicit that kavita.db needs to be writable. * Implemented a new Exception type that is for throwing a message to UI without logging in Sentry.
21 lines
No EOL
387 B
C#
21 lines
No EOL
387 B
C#
using System;
|
|
|
|
namespace Kavita.Common
|
|
{
|
|
/// <summary>
|
|
/// These are used for errors to send to the UI that should not be reported to Sentry
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KavitaException : Exception
|
|
{
|
|
public KavitaException()
|
|
{
|
|
|
|
}
|
|
|
|
public KavitaException(string message) : base(message)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |