From 3be4e4bc57077b2623f6b65fd5c4ccbf2682c50b Mon Sep 17 00:00:00 2001 From: Ehren Kret Date: Fri, 6 Jan 2023 10:03:27 -0600 Subject: [PATCH] remove unused exception type --- .../controllers/InvalidDestinationException.java | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 service/src/main/java/org/whispersystems/textsecuregcm/controllers/InvalidDestinationException.java diff --git a/service/src/main/java/org/whispersystems/textsecuregcm/controllers/InvalidDestinationException.java b/service/src/main/java/org/whispersystems/textsecuregcm/controllers/InvalidDestinationException.java deleted file mode 100644 index cd7893707..000000000 --- a/service/src/main/java/org/whispersystems/textsecuregcm/controllers/InvalidDestinationException.java +++ /dev/null @@ -1,12 +0,0 @@ -/* - * Copyright 2013-2020 Signal Messenger, LLC - * SPDX-License-Identifier: AGPL-3.0-only - */ - -package org.whispersystems.textsecuregcm.controllers; - -public class InvalidDestinationException extends Exception { - public InvalidDestinationException(String message) { - super(message); - } -}