FUS: restore removed class and mark it as scheduled for removal

GitOrigin-RevId: 179e45e37d316d6d1dcd41b56c029eac09c1d02f
This commit is contained in:
Svetlana.Zemlyanskaya
2020-06-15 18:02:34 +03:00
committed by intellij-monorepo-bot
parent 853965b935
commit 16e23c9b47
@@ -0,0 +1,12 @@
// Copyright 2000-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.internal.statistic;
import org.jetbrains.annotations.ApiStatus;
@Deprecated
@ApiStatus.ScheduledForRemoval(inVersion = "2020.3")
public class CollectUsagesException extends Exception {
public CollectUsagesException(String message) {
super(message);
}
}