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

com.sportradar.unifiedodds.sdk.exceptions.NameGenerationException Maven / Gradle / Ivy

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

package com.sportradar.unifiedodds.sdk.exceptions;

/**
 * The following exception gets thrown when an entity name generation fails
 */
public class NameGenerationException extends OddsFeedSdkException {
    public NameGenerationException(String message) {
        super(message);
    }

    public NameGenerationException(String message, Exception e) {
        super(message, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy