blob: 717938f979a8eaf4f33841f2638b4034bd192686 [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);
}
}