Click here to Skip to main content
15,868,019 members
Articles / Web Development / ASP.NET

MVC Basic Site: Step 2 - Exceptions Management

Rate me:
Please Sign up or sign in to vote.
4.90/5 (46 votes)
25 Oct 2013Ms-PL16 min read 145.1K   5.4K   135  
This second article from the "MVC Basic Site" series presents in details the exceptions management rules and their implementation for an ASP.NET MVC web site, and provides some utile base classes and source code for Logging and Exceptions Management that can be reused.

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvcBasicSite", "MvcBasicSite\MvcBasicSite.csproj", "{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvcBasic.Logic", "MvcBasic.Logic\MvcBasic.Logic.csproj", "{C425134C-D6A3-4D00-90BD-E743301883B9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CreateEventLogEntry", "CreateEventLogEntry\CreateEventLogEntry.csproj", "{1D426355-9B4B-48D1-A2EF-D099DDB9C475}"
EndProject
Global
	GlobalSection(SourceCodeControl) = preSolution
		SccNumberOfProjects = 4
		SccLocalPath0 = .
		SccProjectUniqueName1 = MvcBasicSite\\MvcBasicSite.csproj
		SccLocalPath1 = .
		SccProjectFilePathRelativizedFromConnection1 = MvcBasicSite\\
		SccProjectUniqueName2 = MvcBasic.Logic\\MvcBasic.Logic.csproj
		SccLocalPath2 = .
		SccProjectFilePathRelativizedFromConnection2 = MvcBasic.Logic\\
		SccProjectUniqueName3 = CreateEventLogEntry\\CreateEventLogEntry.csproj
		SccLocalPath3 = .
		SccProjectFilePathRelativizedFromConnection3 = CreateEventLogEntry\\
	EndGlobalSection
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}.Debug|x86.ActiveCfg = Debug|Any CPU
		{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}.Release|Any CPU.Build.0 = Release|Any CPU
		{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{EFD8D6FE-41DF-41C7-9AF9-33CEC3C80E90}.Release|x86.ActiveCfg = Release|Any CPU
		{C425134C-D6A3-4D00-90BD-E743301883B9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{C425134C-D6A3-4D00-90BD-E743301883B9}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{C425134C-D6A3-4D00-90BD-E743301883B9}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{C425134C-D6A3-4D00-90BD-E743301883B9}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{C425134C-D6A3-4D00-90BD-E743301883B9}.Debug|x86.ActiveCfg = Debug|Any CPU
		{C425134C-D6A3-4D00-90BD-E743301883B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{C425134C-D6A3-4D00-90BD-E743301883B9}.Release|Any CPU.Build.0 = Release|Any CPU
		{C425134C-D6A3-4D00-90BD-E743301883B9}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{C425134C-D6A3-4D00-90BD-E743301883B9}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{C425134C-D6A3-4D00-90BD-E743301883B9}.Release|x86.ActiveCfg = Release|Any CPU
		{1D426355-9B4B-48D1-A2EF-D099DDB9C475}.Debug|Any CPU.ActiveCfg = Debug|x86
		{1D426355-9B4B-48D1-A2EF-D099DDB9C475}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
		{1D426355-9B4B-48D1-A2EF-D099DDB9C475}.Debug|Mixed Platforms.Build.0 = Debug|x86
		{1D426355-9B4B-48D1-A2EF-D099DDB9C475}.Debug|x86.ActiveCfg = Debug|x86
		{1D426355-9B4B-48D1-A2EF-D099DDB9C475}.Debug|x86.Build.0 = Debug|x86
		{1D426355-9B4B-48D1-A2EF-D099DDB9C475}.Release|Any CPU.ActiveCfg = Release|x86
		{1D426355-9B4B-48D1-A2EF-D099DDB9C475}.Release|Mixed Platforms.ActiveCfg = Release|x86
		{1D426355-9B4B-48D1-A2EF-D099DDB9C475}.Release|Mixed Platforms.Build.0 = Release|x86
		{1D426355-9B4B-48D1-A2EF-D099DDB9C475}.Release|x86.ActiveCfg = Release|x86
		{1D426355-9B4B-48D1-A2EF-D099DDB9C475}.Release|x86.Build.0 = Release|x86
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

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 Microsoft Public License (Ms-PL)


Written By
Romania Romania
I have about 20 years experiences in leading software projects and teams and about 25 years of working experience in software development (SW Developer, SW Lead, SW Architect, SW PM, SW Manager/Group Leader).

Comments and Discussions