mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
[platform] no logging for control-flow exceptions (EA-75751)
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user