Click here to Skip to main content
15,879,095 members
Articles / Desktop Programming / Windows Forms

Visual Application Launcher

Rate me:
Please Sign up or sign in to vote.
4.91/5 (37 votes)
23 Jan 2012CPOL23 min read 106.8K   3.7K   116  
A WinForms UI using WCF services, Entity Framework, repository data access, repository caching, Unit of Work, Dependency Injection, and every other buzz work you can think of!
namespace VAL.Common
{
    using System;
    using System.Runtime.Serialization;

    /// <summary>
    /// An exception that is thrown when there are no file permissions assigned
    /// against the current user
    /// </summary>
    /// 
    [Serializable()]
    public class NoFilePermissionsException : VALException
    {

        /// <summary>
        /// Constructor accepting a single string message
        /// </summary>
        /// <param name="message">The message for the exception</param>
        public NoFilePermissionsException(string message) : base(message) { }


        /// <summary>
        /// Constructor accepting a string message and an 
        /// inner exception which will be wrapped by this 
        /// custom exception class
        /// </summary>
        /// <param name="message">The message for the exception </param>
        /// <param name="inner">The inner exception to be wrapped</param>
        public NoFilePermissionsException(string message, Exception inner) : base(message, inner) { }


        /// <summary>
        /// Construct with <see cref="SerializationInfo"/> and a <see cref="StreamingContext"/>
        /// </summary>
        /// <param name="info"></param>
        /// <param name="context"></param>
        public NoFilePermissionsException(SerializationInfo info, StreamingContext context) : base(info, context) { }
    }

}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions