9914fefe1c
Co-authored-by: Fedor Indutny <79877362+indutny-signal@users.noreply.github.com>
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import type Long from 'long';
|
|
|
|
export class UnsupportedBackupVersion extends Error {
|
|
constructor(version: Long) {
|
|
super(`Unsupported backup version: ${version}`);
|
|
}
|
|
}
|