All Downloads are FREE. Search and download functionalities are using the official Maven repository.

generator.server.javatool.enums.main.UnmappableEnumException.mustache Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package {{ packageName }}.shared.enumeration.domain;

class UnmappableEnumException extends RuntimeException {

  public , U extends Enum> UnmappableEnumException(Class from, Class to) {
    super("Can't map " + from + " to " + to);
  }
}