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

com.sportradar.unifiedodds.sdk.exceptions.UnsupportedUrnFormatException 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 a URN object fails to initialize
 */
public class UnsupportedUrnFormatException extends OddsFeedSdkException {
    public UnsupportedUrnFormatException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy