blob: 49680249343f55530c076f970cde2917a4925039 [file] [log] [blame]
package org.eclipse.jdi.hcr;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
/**
* Thrown to indicate that the target VM refused to perform an operation.
*/
public class OperationRefusedException extends RuntimeException {
public OperationRefusedException() {
}
public OperationRefusedException(String s) {
super(s);
}
}