Rename project, namespaces and class names Signed-off-by: Pavel Gross <p.gross@yadro.com>
18 lines
No EOL
360 B
C#
18 lines
No EOL
360 B
C#
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)
|
|
{
|
|
}
|
|
} |