mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2024-11-22 05:42:46 +01:00
12 lines
295 B
C#
12 lines
295 B
C#
using System;
|
|
|
|
namespace DHT.Server.Database.Exceptions;
|
|
|
|
public sealed class InvalidDatabaseVersionException : Exception {
|
|
public string Version { get; }
|
|
|
|
internal InvalidDatabaseVersionException(string version) : base("Invalid database version: " + version) {
|
|
this.Version = version;
|
|
}
|
|
}
|