mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 15:19:59 +07:00
11 lines
185 B
Java
11 lines
185 B
Java
/*
|
|
* @author Eugene Zhuravlev
|
|
*/
|
|
package com.intellij.debugger;
|
|
|
|
public class DebugException extends RuntimeException {
|
|
public DebugException() {
|
|
super("DebugException");
|
|
}
|
|
}
|