
* Lots of cleanup on the warnings in the solution. Deprecated IsLastWriteLessThan and made a new method HasFileBeenModifiedSince. * Added some tests for the new extension method. * Changed filter import to use correct import * Scan Series now uses Refresh Metadata for Series, rather than library one. * Fixed an issue where cover generation wasn't properly taking forced update into consideration. Removed a case of cover generation for no reason. * Fixed series downloads not triggering backend call
25 lines
641 B
C#
25 lines
641 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>
|
|
[Serializable]
|
|
public class KavitaException : Exception
|
|
{
|
|
public KavitaException()
|
|
{ }
|
|
|
|
public KavitaException(string message) : base(message)
|
|
{ }
|
|
|
|
public KavitaException(string message, Exception inner)
|
|
: base(message, inner) { }
|
|
|
|
protected KavitaException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{ }
|
|
}
|
|
}
|