mirror of
https://github.com/chylex/Discord-History-Tracker.git
synced 2025-01-08 01:42:49 +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;
|
|
}
|
|
}
|