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.
ObjectSaveException.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ObjectSaveException.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Exception indicating a failure during an object</summary>
7//-----------------------------------------------------------------------
8using System;
9using System.Collections.Generic;
10using System.Linq;
11using System.Text;
12using Csla.Properties;
13
14namespace Csla.Windows
15{
20 public class ObjectSaveException : Exception
21 {
25 public ObjectSaveException() : base() { }
26
33 public ObjectSaveException(string message) : base(message) { }
34
44 public ObjectSaveException(string message, Exception innerException) : base(message, innerException) { }
45
52 public ObjectSaveException(Exception innerException) : base(Resources.ExceptionOccurredDuringSaveOperation, innerException) { }
53 }
54}
A strongly-typed resource class, for looking up localized strings, etc.
Exception indicating a failure during an object save operation.
ObjectSaveException()
Creates an instance of the object.
ObjectSaveException(string message, Exception innerException)
Creates an instance of the object.
ObjectSaveException(string message)
Creates an instance of the object.
ObjectSaveException(Exception innerException)
Creates an instance of the object.