/Porrima/Porrima/SettingsStoreException.cs
C# | 64 lines | 24 code | 5 blank | 35 comment | 0 complexity | 1136e9fab53f507ea3041c142661cdfb MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0
- // SettingsStore class exception
- // --------------------------------------------------------------------------------
- // Porrima Hex Editor
- // Copyright (C) 2008-2010 Stanislav Vorobyev <mailto:stanislav.vorobyev@gmail.com>
- //
- // This program 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, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program 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 program. If not, see <http://www.gnu.org/licenses/>.
- // --------------------------------------------------------------------------------
- // $Id: SettingsStoreException.cs 14 2010-09-12 11:57:54Z stanislav.vorobyev $
-
- using System;
- using System.Runtime.Serialization;
-
- namespace Porrima
- {
- /// <summary>
- /// ?????????????? ???????? ??? ?????? ? ???????????
- /// </summary>
- [Serializable]
- public class SettingsStoreException : Exception
- {
- /// <summary>
- /// ??????????? ??????????
- /// </summary>
- /// <param name="message">?????????</param>
- public SettingsStoreException(string message)
- : base(message)
- {
- }
-
- /// <summary>
- /// ??????????? ??????????
- /// </summary>
- public SettingsStoreException()
- {
- }
-
- /// <summary>
- /// ??????????? ??????????
- /// </summary>
- protected SettingsStoreException(SerializationInfo info, StreamingContext context)
- : base(info, context)
- {
- }
-
- /// <summary>
- /// ??????????? ??????????
- /// </summary>
- public SettingsStoreException(string message, Exception exception)
- : base(message, exception)
- {
- }
- }
- }