Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/src/commit/48dbc127a7dfeacc1e2aee8ed58cbb8f972bc09f/Exceptron.Client/Message/ExceptionResponse.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
Prowlarr/Exceptron.Client/Message/ExceptionResponse.cs

34 lines
1.0 KiB

using System;
using Exceptron.Client.Configuration;
namespace Exceptron.Client.Message
{
public class ExceptionResponse
{
/// <summary>
/// Exception report reference ID. This ID will be shared across
/// similar exceptions
/// </summary>
public string RefId { get; internal set; }
/// <summary>
/// Was the report successfully processed on the server
/// </summary>
public bool Successful
{
get
{
return !string.IsNullOrEmpty(RefId);
}
}
/// <summary>
/// Exception that caused the message to fail.
/// </summary>
/// <remarks>
/// This property will only be populated if <see cref="ExceptronConfiguration.ThrowExceptions"/> is set to <see cref="bool.False"/>/>
/// Exception is thrown if <see cref="ExceptronConfiguration.ThrowExceptions"/> is set to <see cref="bool.True"/>.
/// </remarks>
public Exception Exception { get; internal set; }
}
}