/* * This file is part of Socialvoid.NET Project (https://github.com/Intellivoid/Socialvoid.NET). * Copyright (c) 2021 Socialvoid.NET Authors. * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this source code of library. * If not, see . */ namespace Socialvoid.Errors.AuthenticationErrors { /// /// This exception will be raised when the requested session can /// not be found in the database on server-side. /// Since: v0.0.0 /// public sealed class SessionNotFoundException : GeneralException { //------------------------------------------------- #region Constant's Region // some members here #endregion //------------------------------------------------- #region static Properties Region // some members here #endregion //------------------------------------------------- #region Properties Region /// /// The error code /// will be returned because the requested session was /// not found in the database on server-side. /// Since: v0.0.0 /// public override ErrorCodes ErrorCode { get { return ErrorCodes.SessionNotFound; } } #endregion //------------------------------------------------- #region static field's Region // some members here #endregion //------------------------------------------------- #region field's Region // some members here #endregion //------------------------------------------------- #region static event field's Region // some members here #endregion //------------------------------------------------- #region event field's Region // some members here #endregion //------------------------------------------------- #region Constructor's Region /// /// Creates a new instance of . /// Since: v0.0.0 /// internal SessionNotFoundException(string message) : base(message) { ; } #endregion //------------------------------------------------- #region Destructor's Region // some members here #endregion //------------------------------------------------- } }