blob: 6313632b582c631a59786a24419bec1dd3e2a941 [file] [log] [blame]
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);
}