org.hotrod.exceptions.UncontrolledException 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 UncontrolledException extends Exception {
private static final long serialVersionUID = 1L;
public UncontrolledException(final String message, final Throwable cause) {
super(message, cause);
}
}