using System; namespace FrostFS.SDK.Client; public class SessionNotFoundException : FrostFsException { public SessionNotFoundException() { } public SessionNotFoundException(string message) : base(message) { } public SessionNotFoundException(string message, Exception innerException) : base(message, innerException) { } }