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