jellyfin-plugin-metashark/Jellyfin.Plugin.MetaShark/Vendor/TMDbLib/Objects/Authentication/GuestSessionRequiredExcepti...

14 lines
373 B
C#

using System;
namespace TMDbLib.Objects.Authentication
{
public class GuestSessionRequiredException : Exception
{
public GuestSessionRequiredException()
: base("The method you called requires a valid guest or user session to be set on the client object. Please use the 'SetSessionInformation' method to do so.")
{
}
}
}