From b8788cfc2f3372fe031f5e520f1aecaf24ac26e6 Mon Sep 17 00:00:00 2001 From: Kirill Likhodedov Date: Mon, 23 May 2016 18:36:47 +0300 Subject: [PATCH] deprecate the unused class which has external usages --- .../openapi/application/RuntimeInterruptedException.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/platform/util/src/com/intellij/openapi/application/RuntimeInterruptedException.java b/platform/util/src/com/intellij/openapi/application/RuntimeInterruptedException.java index 234ed8d1f5b2..50731431bdae 100644 --- a/platform/util/src/com/intellij/openapi/application/RuntimeInterruptedException.java +++ b/platform/util/src/com/intellij/openapi/application/RuntimeInterruptedException.java @@ -15,6 +15,10 @@ */ package com.intellij.openapi.application; +/** + * @deprecated To remove in 2017. + */ +@Deprecated public class RuntimeInterruptedException extends RuntimeException { public RuntimeInterruptedException(InterruptedException cause) { super(cause);