[platform] no logging for control-flow exceptions (EA-75751)

This commit is contained in:
Roman Shevchenko
2015-11-03 21:28:43 +01:00
parent 2e39d71e2c
commit ec5b26da41
8 changed files with 53 additions and 27 deletions
@@ -15,16 +15,15 @@
*/
package com.intellij.debugger;
public class NoDataException extends Exception {
import com.intellij.openapi.diagnostic.ControlFlowException;
public class NoDataException extends Exception implements ControlFlowException {
@SuppressWarnings({"deprecation", "ThrowableInstanceNeverThrown"})
public static final NoDataException INSTANCE = new NoDataException();
/**
* @deprecated Use shared {@link NoDataException#INSTANCE} instead
*/
/** @deprecated Use shared {@link NoDataException#INSTANCE} instead */
@Deprecated
public NoDataException() {
}
public NoDataException() { }
@Override
public synchronized Throwable fillInStackTrace() {