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

uk.gov.ida.saml.metadata.exception.MetadataResolverCreationException Maven / Gradle / Ivy

There is a newer version: 3.4.6-277
Show newest version
package uk.gov.ida.saml.metadata.exception;

import java.net.URI;

import static java.lang.String.format;

public class MetadataResolverCreationException extends RuntimeException {
    public MetadataResolverCreationException(URI metadataUri, String message) {
        super(format("Failed to create metadata resolver for %s: %s", metadataUri, message));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy