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

tech.jhipster.lite.module.domain.properties.PropertiesErrorKey Maven / Gradle / Ivy

There is a newer version: 1.22.0
Show newest version
package tech.jhipster.lite.module.domain.properties;

import tech.jhipster.lite.shared.error.domain.ErrorKey;

enum PropertiesErrorKey implements ErrorKey {
  INVALID_BASE_NAME("invalid-project-base-name"),
  INVALID_PROPERTY_TYPE("invalid-property-type"),
  UNKNOWN_PROPERTY("unknown-property");

  private final String key;

  PropertiesErrorKey(String key) {
    this.key = key;
  }

  @Override
  public String get() {
    return key;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy