BlogRequiresSubfolderException.cs :  » Bloggers » SubText » Subtext » Framework » Exceptions » 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 » Bloggers » SubText 
SubText » Subtext » Framework » Exceptions » BlogRequiresSubfolderException.cs
#region Disclaimer/Info

///////////////////////////////////////////////////////////////////////////////////////////////////
// Subtext WebLog
// 
// Subtext is an open source weblog system that is a fork of the .TEXT
// weblog system.
//
// For updated news and information please visit http://subtextproject.com/
// Subtext is hosted at Google Code at http://code.google.com/p/subtext/
// The development mailing list is at subtext@googlegroups.com 
//
// This project is licensed under the BSD license.  See the License.txt file for more information.
///////////////////////////////////////////////////////////////////////////////////////////////////

#endregion

using System;
using System.Globalization;
using Subtext.Framework.Properties;

namespace Subtext.Framework.Exceptions{
    /// <summary>
    /// Exception thrown when creating a new blog, or changing an existing 
    /// blog, without a Subfolder value specified, when another blog 
    /// with the same Host name exists.
    /// </summary>
    /// <remarks>
    /// An example of this case is where a system has a blog with the host 
    /// "example.com" and the subfolder name "MyBlog".  Attempting to create 
    /// a new blog with the host name "example.com" and an empty subfolder 
    /// name will result in this exception being thrown.
    /// </remarks>
    [Serializable]
    public class BlogRequiresSubfolderException : BaseBlogConfigurationException
    {
        readonly string _host;

        /// <summary>
        /// Creates a new <see cref="BlogRequiresSubfolderException"/> instance.
        /// </summary>
        public BlogRequiresSubfolderException(string hostName, int blogsWithSameHostCount, int blogId)
        {
            _host = hostName;
            BlogsWithSameHostCount = blogsWithSameHostCount;
            BlogId = blogId;
        }

        /// <summary>
        /// Creates a new <see cref="BlogRequiresSubfolderException"/> instance.
        /// </summary>
        public BlogRequiresSubfolderException(string hostName, int blogsWithSameHostCount)
            : this(hostName, blogsWithSameHostCount, NullValue.NullInt32)
        {
        }

        /// <summary>
        /// Gets the blogs with same host count.
        /// </summary>
        /// <value></value>
        public int BlogsWithSameHostCount { get; private set; }

        /// <summary>
        /// Gets the blog id.
        /// </summary>
        /// <value></value>
        public int BlogId { get; private set; }

        /// <summary>
        /// Gets a message that describes the current exception.
        /// </summary>
        /// <value></value>
        public override string Message
        {
            get
            {
                string blogCountClause = Resources.IsAnotherBlog;
                if(BlogsWithSameHostCount >= 1)
                {
                    blogCountClause = String.Format(CultureInfo.InvariantCulture, Resources.BlogCountClause,
                                                    BlogsWithSameHostCount);
                }

                return String.Format(CultureInfo.InvariantCulture,
                                     Resources.BlogRequiresSubfolder_ThereAreBlogsWithSameHostName, blogCountClause,
                                     _host);
            }
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.