CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
ConfigurationErrorsException.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ConfigurationErrorsException.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Exception class indicating that there was a validation</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Configuration
11{
16 public class ConfigurationErrorsException : Exception
17 {
22 {
23
24 }
25
30 public ConfigurationErrorsException(string message)
31 : base(message)
32 {
33
34 }
35
41 public ConfigurationErrorsException(string message, Exception innerException)
42 : base(message, innerException)
43 {
44
45 }
46
52 protected ConfigurationErrorsException(System.Runtime.Serialization.SerializationInfo info,
53 System.Runtime.Serialization.StreamingContext context)
54 : base(info, context)
55 {
56
57 }
58 }
59}
Exception thrown due to configuration errors.
ConfigurationErrorsException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
Creates an instance of the object for serialization.
ConfigurationErrorsException()
Creates an instance of the object.
ConfigurationErrorsException(string message, Exception innerException)
Creates an instance of the object.
ConfigurationErrorsException(string message)
Creates an instance of the object.
@ Serializable
Prevents updating or inserting until the transaction is complete.