org.jboss.resteasy.spi.NotImplementedYetException Maven / Gradle / Ivy
package org.jboss.resteasy.spi;
/**
* @author Bill Burke
* @version $Revision: 1 $
*/
public class NotImplementedYetException extends RuntimeException
{
public NotImplementedYetException()
{
}
public NotImplementedYetException(final String s)
{
super(s);
}
}