blob: 3c37085558170c9488113faf755303a8db40f310 [file] [log] [blame]
package com.sun.jdi;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
public class VMOutOfMemoryException extends RuntimeException {
public VMOutOfMemoryException() { }
public VMOutOfMemoryException(String s) {
super(s);
}
}