Files
FF-Helper/SharedLibraries/SeriusSoft/MVVM/Exceptions/AlreadyInBatchModeException.cs
T
Nate VanBuskirk eaac71df55 Stock from Github repo
- WPF Client (empty)
- MVVM code base (limited)
- Images, Sprites, and other Rss
2020-01-09 17:10:28 -06:00

17 lines
533 B
C#

using System;
using System.Runtime.Serialization;
namespace SeriusSoft.Frameworks.MVVM.Exceptions
{
public class AlreadyInBatchModeException : Exception
{
public AlreadyInBatchModeException() : base() { }
public AlreadyInBatchModeException(string message) : base(message) { }
public AlreadyInBatchModeException(string message, Exception innerException) : base(message, innerException) { }
public AlreadyInBatchModeException(SerializationInfo info, StreamingContext context) : base(info, context) { }
}
}