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

de.captaingoldfish.scim.sdk.server.schemas.exceptions.AttributeValidationException Maven / Gradle / Ivy

// Generated by delombok at Thu Nov 02 20:38:53 CET 2023
package de.captaingoldfish.scim.sdk.server.schemas.exceptions;

import de.captaingoldfish.scim.sdk.common.schemas.SchemaAttribute;


/**
 * @author Pascal Knueppel
 * @since 09.04.2021
 */
public class AttributeValidationException extends RuntimeException
{

  private SchemaAttribute schemaAttribute;

  public AttributeValidationException(SchemaAttribute schemaAttribute, String message)
  {
    super(message);
    this.schemaAttribute = schemaAttribute;
  }

  public AttributeValidationException(SchemaAttribute schemaAttribute, String message, Throwable cause)
  {
    super(message, cause);
    this.schemaAttribute = schemaAttribute;
  }

  @java.lang.SuppressWarnings("all")
  public SchemaAttribute getSchemaAttribute()
  {
    return this.schemaAttribute;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy