summaryrefslogtreecommitdiff
path: root/platform/xdebugger-api/src/com/intellij/xdebugger/frame/XValueCallback.java
blob: 6313632b582c631a59786a24419bec1dd3e2a941 (plain)
1
2
3
4
5
6
7
8
9
10
11
package com.intellij.xdebugger.frame;

import org.jetbrains.annotations.NotNull;

public interface XValueCallback {
  /**
   * Indicate that an error occurs
   * @param errorMessage message describing the error
   */
  void errorOccurred(@NotNull String errorMessage);
}