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

com.sportradar.mts.sdk.api.exceptions.MtsYamlException Maven / Gradle / Ivy

/*
 * Copyright (C) Sportradar AG. See LICENSE for full license governing this code
 */

package com.sportradar.mts.sdk.api.exceptions;

/**
 * SDK exception for missing yaml configuration
 */
public class MtsYamlException extends MtsSdkRuntimeException {

    private static final long serialVersionUID = 46468486514682L;

    public MtsYamlException(String message, Throwable cause) {
        super(message, cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy