black.door.hate.CannotEmbedLinkException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hate Show documentation
Show all versions of hate Show documentation
HATEOAS with HAL for Java
package black.door.hate;
/**
* Created by nfischer on 1/31/2016.
*/
public class CannotEmbedLinkException extends RuntimeException {
public CannotEmbedLinkException(String fieldName){
super(fieldName + " is a link and cannot be embedded as a resource.");
}
}