Stock from Github repo
- WPF Client (empty) - MVVM code base (limited) - Images, Sprites, and other Rss
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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) { }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Runtime.Serialization;
|
||||
|
||||
namespace SeriusSoft.Frameworks.MVVM.Exceptions
|
||||
{
|
||||
public class NotInBatchModeException : Exception
|
||||
{
|
||||
public NotInBatchModeException() : base() { }
|
||||
|
||||
public NotInBatchModeException(string message) : base(message) { }
|
||||
|
||||
public NotInBatchModeException(string message, Exception innerException) : base(message, innerException) { }
|
||||
|
||||
public NotInBatchModeException(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user