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

cz.active24.client.fred.exception.SchemaValidationException Maven / Gradle / Ivy

There is a newer version: 2.50
Show newest version
package cz.active24.client.fred.exception;

/**
 * Exception is thrown when validation against provided xsd schemas failed.
 */
public class SchemaValidationException extends FredClientException {

    private String customMessage;

    public SchemaValidationException(String message) {
        super(message);
    }

    public SchemaValidationException(String message, Throwable throwable) {
        super(message, throwable);
    }

    public SchemaValidationException(String customMessage, String message) {
        super(message);
        this.customMessage = customMessage;
    }

    public SchemaValidationException(String customMessage, String message, Throwable throwable) {
        super(message, throwable);
        this.customMessage = customMessage;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy