org.hotrod.exceptions.IdentitiesPostFetchNotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hotrod-generator Show documentation
Show all versions of hotrod-generator Show documentation
HotRod is an ORM for Java, Spring and SpringBoot.
The newest version!
package org.hotrod.exceptions;
public class IdentitiesPostFetchNotSupportedException extends Exception {
private static final long serialVersionUID = 1L;
public IdentitiesPostFetchNotSupportedException(final String message) {
super(message);
}
}