package org.jboss.resteasy.spi;
Author: Bill Burke Version: $Revision: 1 $
/**
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
* @version $Revision: 1 $
*/
public class NotImplementedYetException extends RuntimeException
{
public NotImplementedYetException()
{
}
public NotImplementedYetException(String s)
{
super(s);
}
}