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

14 lines
362 B
C#

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