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

com.netflix.archaius.exceptions.ConverterNotFoundException Maven / Gradle / Ivy

The newest version!
package com.netflix.archaius.exceptions;

public class ConverterNotFoundException extends RuntimeException {
    public ConverterNotFoundException(String message) {
        super(message);
    }
    public ConverterNotFoundException(String message, Exception e) {
        super(message, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy