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

de.gold.scim.common.exceptions.IncompatibleAttributeException Maven / Gradle / Ivy

The newest version!
package de.gold.scim.common.exceptions;

import lombok.Builder;


/**
 * author Pascal Knueppel 
* created at: 28.09.2019 - 13:39
*
* this exception is used if an attempt was made to read a json attribute that does have another type as the * expected one */ public class IncompatibleAttributeException extends ScimException { @Builder public IncompatibleAttributeException(String message, Throwable cause, Integer status, String scimType) { super(message, cause, status, scimType); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy