Es wird überprüft auf den Datenbank version
This commit is contained in:
28
SanShared/Exceptions/DataBaseVersionMismatchException.cs
Normal file
28
SanShared/Exceptions/DataBaseVersionMismatchException.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Runtime.Serialization;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SanShared.Exceptions
|
||||
{
|
||||
public class DataBaseVersionMismatchException : Exception
|
||||
{
|
||||
public DataBaseVersionMismatchException()
|
||||
{
|
||||
}
|
||||
|
||||
public DataBaseVersionMismatchException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public DataBaseVersionMismatchException(string message, Exception innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
|
||||
protected DataBaseVersionMismatchException(SerializationInfo info, StreamingContext context) : base(info, context)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user