blob: c8d38bf7116c2616258815cd21dec0a609b82153 [file] [log] [blame]
package org.eclipse.jdt.internal.core.builder;
public class StateSpecificException extends RuntimeException
{
/**
* Constructs a <code>StateSpecificException</code> without a detail message.
*/
public StateSpecificException() {
super();
}
/**
* Constructs a <code>StateSpecificException</code> with a detail message.
*
* @param s the detail message.
*/
public StateSpecificException(String s) {
super(s);
}
}