blob: 346523d02e036dbcdb783c586ce9bc554abee472 [file] [log] [blame]
package org.jetbrains.debugger;
import org.jetbrains.debugger.values.Value;
public abstract class ExceptionDataBase implements ExceptionData {
private final Value exceptionValue;
protected ExceptionDataBase(Value exceptionValue) {
this.exceptionValue = exceptionValue;
}
@Override
public final Value getExceptionValue() {
return exceptionValue;
}
}