/* * 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.ValidationErrors { /// /// This exception will be raised when the client's private hash is invalid /// and cannot be identified as a sha256. /// Since: v0.0.0 /// public sealed class InvalidClientPrivateHashException : 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 client's private hash is invalid /// and cannot be identified as a sha256. /// Since: v0.0.0 /// public override ErrorCodes ErrorCode { get { return ErrorCodes.InvalidClientPrivateHash; } } #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 InvalidClientPrivateHashException(string message) : base(message) { ; } #endregion //------------------------------------------------- #region Destructor's Region // some members here #endregion //------------------------------------------------- } }