Exceptions.cs :  » RSS-RDF » Atom.NET » Atom » Core » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » RSS RDF » Atom.NET 
Atom.NET » Atom » Core » Exceptions.cs
/* 
    * Exceptions.cs
  * [ part of Atom.NET library: http://atomnet.sourceforge.net ]
  * Author: Lawrence Oluyede
  * License: BSD-License (see below)
    
  Copyright (c) 2003, 2004 Lawrence Oluyede
    All rights reserved.

    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice,
    * this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright
    * notice, this list of conditions and the following disclaimer in the
    * documentation and/or other materials provided with the distribution.
    * Neither the name of the copyright owner nor the names of its
    * contributors may be used to endorse or promote products derived from
    * this software without specific prior written permission.

    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
    LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    POSSIBILITY OF SUCH DAMAGE.
*/
using System;

namespace Atom.Core{
  #region Person constructs exception

  /// <summary>
  /// The exception that is thrown when a required element is not found in the feed or entry.
  /// </summary>
  [Serializable]
  public class RequiredElementNotFoundException : ApplicationException
  {
    /// <summary>
    /// Initializes a new instance of the <see cref="RequiredElementNotFoundException"/> class.
    /// </summary>
    public RequiredElementNotFoundException()
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="RequiredElementNotFoundException"/> class with a specified error message.
    /// </summary>
    /// <param name="msg">A message that describes the error.</param>
    public RequiredElementNotFoundException(string msg) : base(msg)
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="RequiredElementNotFoundException"/> class with a specified error message
    /// and a reference to the inner exception that is the cause of this exception.
    /// </summary>
    /// <param name="msg">A message that describes the error.</param>
    /// <param name="inner">The exception that is the cause of the current exception.
    /// If the innerException parameter is not a null reference, the current exception is raised in a catch
    /// block that handles the inner exception. </param>
    public RequiredElementNotFoundException(string msg, Exception inner)
      : base(msg, inner)
    {
    }
  }

  /// <summary>
  /// The exception that is thrown when a required attribute is not found in the feed or entry.
  /// </summary>
  [Serializable]
  public class RequiredAttributeNotFoundException : ApplicationException
  {
    /// <summary>
    /// Initializes a new instance of the <see cref="RequiredElementNotFoundException"/> class.
    /// </summary>
    public RequiredAttributeNotFoundException()
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="RequiredElementNotFoundException"/> class with a specified error message.
    /// </summary>
    /// <param name="msg">A message that describes the error.</param>
    public RequiredAttributeNotFoundException(string msg) : base(msg)
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="RequiredElementNotFoundException"/> class with a specified error message
    /// and a reference to the inner exception that is the cause of this exception.
    /// </summary>
    /// <param name="msg">A message that describes the error.</param>
    /// <param name="inner">The exception that is the cause of the current exception.
    /// If the innerException parameter is not a null reference, the current exception is raised in a catch
    /// block that handles the inner exception. </param>
    public RequiredAttributeNotFoundException(string msg, Exception inner)
      : base(msg, inner)
    {
    }
  }

  #endregion Person constructs exception

  #region AtomContentCollection exception

  /// <summary>
  /// The exception that is thrown when a more than one multipart content is inserted in an entry.
  /// </summary>
  [Serializable]
  public class OnlyOneMultipartContentAllowedException : ApplicationException
  {
    /// <summary>
    /// Initializes a new instance of the <see cref="OnlyOneMultipartContentAllowedException"/> class.
    /// </summary>
    public OnlyOneMultipartContentAllowedException()
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="OnlyOneMultipartContentAllowedException"/> class with a specified error message.
    /// </summary>
    /// <param name="msg">A message that describes the error.</param>
    public OnlyOneMultipartContentAllowedException(string msg) : base(msg)
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="OnlyOneMultipartContentAllowedException"/> class with a specified error message
    /// and a reference to the inner exception that is the cause of this exception.
    /// </summary>
    /// <param name="msg">A message that describes the error.</param>
    /// <param name="inner">The exception that is the cause of the current exception.
    /// If the innerException parameter is not a null reference, the current exception is raised in a catch
    /// block that handles the inner exception. </param>
    public OnlyOneMultipartContentAllowedException(string msg, Exception inner)
      : base(msg, inner)
    {
    }
  }

  #endregion AtomContentCollection exception

  #region AtomLinkCollection exceptions

  /// <summary>
  /// The exception that is thrown when the main link with alternate relationship is not inserted.
  /// </summary>
  [Serializable]
  public class MainAlternateLinkMissingException : ApplicationException
  {
    /// <summary>
    /// Initializes a new instance of the <see cref="MainAlternateLinkMissingException"/> class.
    /// </summary>
    public MainAlternateLinkMissingException()
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="MainAlternateLinkMissingException"/> class with a specified error message.
    /// </summary>
    /// <param name="msg">A message that describes the error.</param>
    public MainAlternateLinkMissingException(string msg) : base(msg)
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="MainAlternateLinkMissingException"/> class with a specified error message
    /// and a reference to the inner exception that is the cause of this exception.
    /// </summary>
    /// <param name="msg">A message that describes the error.</param>
    /// <param name="inner">The exception that is the cause of the current exception.
    /// If the innerException parameter is not a null reference, the current exception is raised in a catch
    /// block that handles the inner exception. </param>
    public MainAlternateLinkMissingException(string msg, Exception inner)
      : base(msg, inner)
    {
    }
  }

  /// <summary>
  /// The exception that is thrown when two duplicate links are found.
  /// </summary>
  [Serializable]
  public class DuplicateLinkException : ApplicationException
  {
    /// <summary>
    /// Initializes a new instance of the <see cref="DuplicateLinkException"/> class.
    /// </summary>
    public DuplicateLinkException()
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="DuplicateLinkException"/> class with a specified error message.
    /// </summary>
    /// <param name="msg">A message that describes the error.</param>
    public DuplicateLinkException(string msg) : base(msg)
    {
    }

    /// <summary>
    /// Initializes a new instance of the <see cref="DuplicateLinkException"/> class with a specified error message
    /// and a reference to the inner exception that is the cause of this exception.
    /// </summary>
    /// <param name="msg">A message that describes the error.</param>
    /// <param name="inner">The exception that is the cause of the current exception.
    /// If the innerException parameter is not a null reference, the current exception is raised in a catch
    /// block that handles the inner exception. </param>
    public DuplicateLinkException(string msg, Exception inner)
      : base(msg, inner)
    {
    }
  }

  #endregion AtomLinkCollection exceptions
}
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.